-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathresetp.html
93 lines (85 loc) · 4.21 KB
/
resetp.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>RikiTraki</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="shortcut icon" href="/favicon.ico">
<!-- bower:css -->
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.css" />
<!-- endbower -->
<!-- build: use this block later with processhtml to prepare dist-->
<link rel="stylesheet" href="css/main.css">
<!-- endbuild -->
</head>
<body>
<!--[if lt IE 10]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div id="navigationBar" class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<a href="." id="logo" class="pull-left"><img src="images/logonone.png"></a>
</div>
</div>
</div>
<div class="modal fade" id="resetPModal" data-backdrop="static" data-keyboard="false" tabindex="-1" role="dialog" aria-labelledby="basicModal" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Hi <span id="hi-username"></span>!</h4>
<p>Reset your password...</p>
</div>
<div class="modal-body">
<div class="well">
<div>
<ul class="nav nav-tabs">
<li class="active"><a class="small" id="updateProfileTab" href="#update" data-toggle="tab">Reset</a></li>
</ul>
</div>
<div class ="well well-sm">
<div id="userTabContent" class="tab-content">
<div class="tab-pane active in" id="update">
<form class="form-horizontal" role="form" id="tab">
<div class="form-group has-feedback">
<label class="control-label col-sm-5" for="password">Update your password</label>
<div class="col-sm-7">
<input type="password" id="usr-password" placeholder="Enter new password" class="form-control">
<span class="glyphicon form-control-feedback" aria-hidden="true"></span>
</div>
</div>
<div class="form-group has-feedback">
<label class="control-label col-sm-5" for="password">Re-enter new password</label>
<div class="col-sm-7">
<input type="password" id="usr-repassword" placeholder="Re-enter new password" class="form-control">
<span class="glyphicon form-control-feedback" aria-hidden="true"></span>
</div>
</div>
<hr>
<div class="form-group">
<div class="col-sm-offset-5 col-sm-7">
<button id="updateProfileButton" class="btn btn-default" disabled="disabled">Update</button>
</div>
</div>
<div class="alert alert-warning" id="profileMessage" role="alert" style="display: none">
<span class="glyphicon glyphicon-info-sign" aria-hidden="true"></span>
<span class="sr-only">Info:</span>
Your password has been reset.
</div>
<div class="alert alert-danger" id="profileError" role="alert" style="display: none">
<span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
<span class="sr-only">Error:</span>
<span id="profileErrorText"></span>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="js/resetp.js"></script>
</body>
</html>