Skip to content

Commit

Permalink
Merge pull request #16 from AnthonyDeSantiago/newUser
Browse files Browse the repository at this point in the history
Added answer text boxes for questions in new user form
  • Loading branch information
AnthonyDeSantiago authored Sep 24, 2023
2 parents 3eaa687 + f9bef6f commit 39feacb
Showing 1 changed file with 35 additions and 23 deletions.
58 changes: 35 additions & 23 deletions public/new_user_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@

<div class="form-control">
<label for="password">Password</label>
<input type="password" name="password" id="password" class="new_user_form_field" placeholder="Enter Password">
<input type="text" name="password" id="password" class="new_user_form_field" placeholder="Enter Password">
<small>Error Message</small>
</div>

Expand All @@ -74,30 +74,42 @@ <h2 id = "avatar_form">

</div>

<div class="drop_down_list">
<div class="selector">
<label for="security_question" class= "dropdown_list_SQ">
Security Questions
</label>
<select name ="questions" class = "question_select">
<option value="--Choose a question"></option>
<option value="What's the name of your Best Friend?">What's the name of your Best Friend?</option>
<option value="Where were you born?">Where were you born?</option>
<option value="What is the name of your favorite pet?">What is the name of your favorite pet?</option>
<option value="What high school did you attend?">What high school did you attend?</option>
<option value="What is your favorite food?">What is your favorite food?</option>
</select>

<label for="security_question" class= "dropdown_list_SQ">
Security Questions
</label>
<select name ="questions" class = "question_select">
<option value="--Choose a question"></option>
<option value="What's the name of your Best Friend?">What's the name of your Best Friend?</option>
<option value="Where were you born?">Where were you born?</option>
<option value="What is the name of your favorite pet?">What is the name of your favorite pet?</option>
<option value="What high school did you attend?">What high school did you attend?</option>
<option value="What is your favorite food?">What is your favorite food?</option>
</select>

<select name ="questions" class = "question_select">
<option value="--Choose a question"></option>
<option value="What's the name of your Best Friend?">What's the name of your Best Friend?</option>
<option value="Where were you born?">Where were you born?</option>
<option value="What is the name of your favorite pet?">What is the name of your favorite pet?</option>
<option value="What high school did you attend?">What high school did you attend?</option>
<option value="What is your favorite food?">What is your favorite food?</option>
</select>
</div>
<div class="form-control">
<label for="question1">Enter Answer</label>
<input type="text" name="question1" id="question1" class="new_user_form_field" placeholder="Enter Answer">
<small>Error Message</small>
</div>

<select name ="questions" class = "question_select">
<option value="--Choose a question"></option>
<option value="What's the name of your Best Friend?">What's the name of your Best Friend?</option>
<option value="Where were you born?">Where were you born?</option>
<option value="What is the name of your favorite pet?">What is the name of your favorite pet?</option>
<option value="What high school did you attend?">What high school did you attend?</option>
<option value="What is your favorite food?">What is your favorite food?</option>
</select>

<div class="form-control">
<label for="question2">Enter Answer</label>
<input type="text" name="question2" id="question2" class="new_user_form_field" placeholder="Enter Answer">
<small>Error Message</small>
</div>



<!--I put the button in the form hope thats ok-->
<button class="new_user_submit_form" type="submit">Submit</button>
</form>
Expand Down

0 comments on commit 39feacb

Please sign in to comment.