diff options
author | Drew DeVault <sir@cmpwn.com> | 2020-05-13 14:48:02 -0400 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2020-05-13 20:54:15 +0200 |
commit | 5fee600c6ef8d7467a394ef04dbf9aa681cb540b (patch) | |
tree | 1e5dd65b9aec22ae65f7914bb1ac880d0378d6f8 /themes/alps/login.html | |
parent | 5a73ca6ebb437c5eed2a9863ab5513facacb6e93 (diff) | |
download | alps-5fee600c6ef8d7467a394ef04dbf9aa681cb540b.tar.gz alps-5fee600c6ef8d7467a394ef04dbf9aa681cb540b.zip |
alps theme: theme the login page
Diffstat (limited to 'themes/alps/login.html')
-rw-r--r-- | themes/alps/login.html | 43 |
1 files changed, 23 insertions, 20 deletions
diff --git a/themes/alps/login.html b/themes/alps/login.html index f599535..e642050 100644 --- a/themes/alps/login.html +++ b/themes/alps/login.html @@ -1,26 +1,29 @@ {{template "head.html" .}} - <h1>alps webmail</h1> - <form method="post" action="/login"> - <p> - <label> - <strong>Username</strong> - <br/> +<main class="login"> + <section> + <h1>Webmail Login</h1> + + <form method="post" action="/login"> + <div class="action-group"> + <label for="username"> + <strong>Username</strong> + </label> <input type="text" name="username" id="username" autofocus /> - </label> - </p> - <br/> - <p> - <label> - <strong>Password</strong> - <br/> + </div> + + <div class="action-group"> + <label for="password"> + <strong>Password</strong> + </label> <input type="password" name="password" id="password" /> - </label> - </p> - <br/> - <p> - <button>Sign in</button> - </p> -</form> + </div> + + <div class="action-group"> + <button type="submit">Sign in</button> + </div> + </form> + </section> +</main> {{template "foot.html"}} |