about summary refs log tree commit diff
path: root/gn3/templates/admin/login.html
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2023-07-03 11:20:34 +0300
committerFrederick Muriuki Muriithi2023-07-03 11:20:34 +0300
commit14f073af864e7d9d94babe2bf094f3079331bb34 (patch)
tree72876281aa41bd391187e262e3044cdb1ea98934 /gn3/templates/admin/login.html
parent424a515120478998592663725d2d1186d36304f4 (diff)
downloadgenenetwork3-14f073af864e7d9d94babe2bf094f3079331bb34.tar.gz
Spruce up UI
Make UI somewhat consistent with the GN2 UI.
Diffstat (limited to 'gn3/templates/admin/login.html')
-rw-r--r--gn3/templates/admin/login.html18
1 files changed, 9 insertions, 9 deletions
diff --git a/gn3/templates/admin/login.html b/gn3/templates/admin/login.html
index cf46009..ac217ab 100644
--- a/gn3/templates/admin/login.html
+++ b/gn3/templates/admin/login.html
@@ -2,11 +2,11 @@
 
 {%block title%}Log in to Genenetwork3{%endblock%}
 
+{%block pagetitle%}Admin Log In{%endblock%}
+
 {%block content%}
 {{flash_messages()}}
 
-<h1>Genenetwork3: Admin Log In</h1>
-
 <form method="POST" action="{{url_for('oauth2.admin.login')}}">
 
   <fieldset>
@@ -14,19 +14,19 @@
 
     <input name="next_uri" type="hidden" value={{next_uri}}>
 
-    <fieldset>
-      <label for="txt:email">Email Address</label>
+    <fieldset class="form-group">
+      <label for="txt:email" class="form-label">Email Address</label>
       <input name="email" type="email" id="txt:email" required="required"
-	     placeholder="your@email.address" />
+	     placeholder="your@email.address" class="form-control" />
     </fieldset>
 
-    <fieldset>
-      <label for="txt:password">Password</label>
+    <fieldset class="form-group">
+      <label for="txt:password" class="form-label">Password</label>
       <input name="password" type="password" id="txt:password"
-	     required="required" />
+	     required="required" class="form-control" />
     </fieldset>
   </fieldset>
   
-  <input type="submit" value="log in" />
+  <input type="submit" value="log in" class="btn btn-primary" />
 </form>
 {%endblock%}