kossiitkgp / kwoc-2018

Web app for Kharagpur Winter of Code, 2018
https://kwoc.kossiitkgp.org
MIT License
0 stars 0 forks source link

Add validation check for student name and email #96

Closed themousepotato closed 5 years ago

themousepotato commented 5 years ago

Currently, almost 49 entries in the student registration contain 'None' as the name of the student. This is because we are not performing a validation check and not using the property of a placeholder. This patch resolves this problem. Also, I'm unable to test this since the student registration button is redirecting me to the main server.

themousepotato commented 5 years ago

@TheLethalCode There is placeholder attribute for that in that student_form.html itself. See

<input type="text" name="name" required="required" placeholder="Name" autocomplete="off" value="{{data.name}}">