Web application made for Software Engineering and Practice (Winter 2018). The application intent was to create a poll of possible meeting times for people to vote on. Once a poll was created, a link would be generated to allow others to vote I was in charge of front end design, including HTML, CSS, and JavaScript. The website was designed with Bootstrap Studio using the Spring MVC framework.
- WebContent/:
- Created all of the jsps included within, which were used to display the website
- Created poll.js and index.js
- index.js is used to create or edit a poll. The created poll is saved to a database connected to the server
- poll.js is used to display the created poll to the end user, allowing them to cast a vote. Once their vote has been cast, a results screen is displayed
- Both of these files use SurveyJS (Licensed under MIT) to display all the polls and results. I had to familiarize myself on how to create and edit polls, send and retreive data to a poll, and displaying the results of a poll.
- MTNG/src/ou/secs/controller/: Helped write the code here to process the information sent/received from the web application