reset password html

Solutions on MaxInterview for reset password html by the best coders in the world

showing results for - "reset password html"
Lotta
03 Oct 2017
1<script>
2@{
3newPassword = Request["newPassword"];
4confirmPassword = Request["confirmPassword"];
5token = Request["token"];
6if IsPost
7{
8    // input testing is ommitted here to save space
9    retunValue = ResetPassword(token, newPassword);
10}
11}
12</script>
13<h1>Change Password</h1>
14
15<form method="post" action="">
16
17<label for="newPassword">New Password:</label>
18<input type="password" id="newPassword" name="newPassword" title="New password" />
19
20<label for="confirmPassword">Confirm Password:</label>
21<input type="password" id="confirmPassword" name="confirmPassword" title="Confirm new password" />
22
23<label for="token">Pasword Token:</label>
24<input type="text" id="token" name="token" title="Password Token" />
25
26<p class="form-actions">
27<input type="submit" value="Change Password" title="Change password" />
28</p>
29
30</form>