summary refs log tree commit diff
path: root/synapse/res/username_picker/index.html
blob: 37ea8bb6d847dc3649d31066fcd07c0dc093e6d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Synapse Login</title>
    <link rel="stylesheet" href="style.css" type="text/css" />
  </head>
  <body>
    <div class="card">
      <form method="post" class="form__input" id="form" action="submit">
        <label for="field-username">Please pick your username:</label>
        <input type="text" name="username" id="field-username" autofocus="">
        <input type="submit" class="button button--full-width" id="button-submit" value="Submit">
      </form>
      <!-- this is used for feedback -->
      <div role=alert class="tooltip hidden" id="message"></div>
      <script src="script.js"></script>
    </div>
  </body>
</html>