A collaborative team project with UX/UI
Team Members:
- Annie Wang
- Brian Nester
- Dani Broadwater
- Chris Cano (Git Tzar)
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
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)
Kanban Project Timeline/Overview
- Dynamic styling/animation

