about summary refs log tree commit diff
diff options
context:
space:
mode:
authorhakangunturkun2020-03-02 11:30:22 -0600
committerhakangunturkun2020-03-02 11:30:22 -0600
commitf4e6da16c9cc7490ba2755786a4c2078fa4c085b (patch)
tree1e77073b7ca7bf19fe2b90a1a63f85db5b550500
parent6cc7b549d504c21ccd3d5af26a1b44f03fdce0b2 (diff)
downloadgenecup-f4e6da16c9cc7490ba2755786a4c2078fa4c085b.tar.gz
sign in page
-rw-r--r--templates/signin.html35
1 files changed, 35 insertions, 0 deletions
diff --git a/templates/signin.html b/templates/signin.html
new file mode 100644
index 0000000..cf5f486
--- /dev/null
+++ b/templates/signin.html
@@ -0,0 +1,35 @@
+{% extends "about.html" %}
+{% block title %}User Sign In{%endblock%}
+{% block content %}
+
+<table>
+  <tr>
+    <td width="60%">
+      {{ super() }}
+    </td>
+    <td width="40%">
+      <div style="clear: both">
+        <h4 style="float: left">Login&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</h4>
+          <a href="signup" >or create an account</a>
+      </div>
+      <hr />
+      <form class="p-2" action="/signin" method="POST">
+        <div class="form-group">                    
+          <input type="email" class="form-control" name="email" id="email" aria-describedby="emailHelp" placeholder="Email address", value="{{email if email}}">
+        </div>
+        <div class="form-group"> 
+          <input type="password" class="form-control" name="password" id="password" placeholder="Password">     
+          <div class="dropdown-divider"></div>
+          <button type="submit" class="btn btn-primary btn-block">Sign in</button>
+        </div>
+      </form>
+      If you forgot your password, you can <a href = "mailto: hakan@uthsc.edu">send email</a> us to get a new one. Please use your e-mail in the system. You can send to hakan@uthsc.edu
+    </td>
+  </tr>
+</table>
+
+
+
+
+
+{% endblock %}
\ No newline at end of file