blob: d31c7a8c7f8a617ec4848575c0ab3b3c17b5d7ab (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="static/external/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="static/external/bootstrap/css/bootstrap-theme.min.css" rel="stylesheet">
<title>Juan De La Cosa</title>
</head>
<body>
<div id="noSuchAccount" class="collapse container">
<h1>Your account does not exist</h1>
<div class="alert alert-info">
Your login would be <strong id="account"></strong>, but it does not exist in the database.
</div>
</div>
<div id="main" class="collapse container">
<h1>Your Account</h1>
<p class="lead">The button below generates a new password every time you click it.
<br> The new password shows for a short time, then you copy it.</p>
<form class="form-horizontal">
<div id="loginGroup" class="form-group">
<label class="control-label col-sm-2" for="login">Login:</label>
<div class="col-sm-6">
<input id="login" readonly type="text" class="form-control" maxlength="80">
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2" for="resetPassword">Password:</label>
<div class="col-sm-6">
<input id="password" readonly type="text" class="collapse form-control">
<button id="resetPassword" type="button" class="btn btn-danger">Reset password</button>
</div>
</div>
<div id="passwordChanged" class="collapse alert alert-success">Password changed</div>
<div id="passwordFailed" class="collapse alert alert-danger"></div>
</form>
</div>
<script src="static/external/jquery-2.2.4.min.js"></script>
<script src="static/external/bootstrap/js/bootstrap.min.js"></script>
<script src="static/juandelacosa.js"></script>
</body>
</html>
|