Skip to content

Commit

Permalink
Update and rename password_page_1.html to forgot_password.html
Browse files Browse the repository at this point in the history
  • Loading branch information
camillereaves authored Sep 25, 2023
1 parent 6ca94bc commit 190fe5b
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions public/password_page_1.html → public/forgot_password.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<title>Sprout Financials</title>
<link rel="stylesheet" href="style.css" class="rel">
<!-- <script defer src = "sprout.js"></script> -->
<script defer src="forgotpassword.js"></script>
<script defer src = "sprout.js" type="module"></script>
<script defer src="forgotpassword.js" type="module"></script>
</head>
<body>

Expand All @@ -33,20 +33,29 @@
</div>


<label for="question1" class="question">QUESTION 1: LOAD FROM DB</label>

<div class="form-control">
<label for="question1" class="question" id="question1">Question 1</label>
<!-- <label for="answer1">Answer</label> -->
<input type="answer1" name="answer1" class="forgot_password_form" id="answer1" placeholder="Answer">
<small>Error Message</small>
</div>


<label for="question2" class="question">QUESTION 2: LOAD FROM DB</label>
<div class="form-control">
<label for="question2" class="question" id="question2">Question 1</label>
<!-- <label for="answer1">Answer</label> -->
<input type="answer2" name="answer2" class="forgot_password_form" id="answer2" placeholder="Answer">
<small>Error Message</small>
</div>

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

<!-- enter password2 here-->

<br>

Expand Down Expand Up @@ -85,4 +94,4 @@
</main>

</body>
</html>
</html>

1 comment on commit 190fe5b

@camillereaves
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added password field, question db pull, etc.

Please sign in to comment.