aboutsummaryrefslogtreecommitdiff
path: root/index.html
blob: aa3b17a207ed28b779b4d42e5ac6ee4b8ded9b72 (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
<!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="info" class="container">
    <h1>Loading, please wait...</h1>
    <div></div>
  </div>

  <div id="main" style="display: none;" class="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" style="display: none;" class="form-control">
          <button id="resetPassword" type="button" class="btn btn-danger">Reset password</button>
        </div>
      </div>
      <div id="passwordMessage" style="display: none;"></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>