Skip to content

CyberDragonWizard/election-app

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

99 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ballot Request App:

A collaborative team project with UX/UI

Team Members:

  • Annie Wang
  • Brian Nester
  • Dani Broadwater
  • Chris Cano (Git Tzar)

Outline & Figma

Imgur

Imgur

UX Team Resources

Team Expectations

Google Docs

Overview

This concept app is a demonstration of how we can bring one aspect of the election process to the 21st century by allowing you to request an absentee ballot for the state of NY from your phone

Schema

Our backend schema

const RequestBallot = new Schema(
  {
    firstName: { type: String, required: true },
    lastName: { type: String, required: true },
    streetAddress: { type: String, required: true },
    apartmentSuite: { type: String, required: false },
    city: { type: String, required: true },
    state: { type: String, required: true },
    zipCode: { type: String, required: true },
    dob: { type: String, required: true },
    email: { type: String, required: false },
    cell: { type: String, required: false }
  }
)

module.exports = mongoose.model('RequestBallot', RequestBallot)

MVP

Kanban Project Timeline/Overview

Post-MVP

  • Dynamic styling/animation

About

Collaborative team project with UX/UI

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • JavaScript 73.8%
  • CSS 23.3%
  • HTML 2.9%