-
Notifications
You must be signed in to change notification settings - Fork 4
/
signup.html
31 lines (26 loc) · 935 Bytes
/
signup.html
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
{% extends "bootstrap/base.html" %}
{% import "bootstrap/wtf.html" as wtf %}
{% block title %}
HealthSystem | Sign Up
{% endblock %}
{% block styles %}
{{super()}}
<link rel="stylesheet" href="{{url_for('.static', filename='login.css')}}">
{% endblock %}
{% block content %}
<div class="container">
<form class="form-signin" method="POST" action="/signup">
<h1 style="text-align:center; text-size:30px">HealthSystem</h1>
<p style="text-align:center">Create Account</p>
{{ form.hidden_tag() }}
{{ wtf.form_field(form.username) }}
{{ wtf.form_field(form.email) }}
{{ wtf.form_field(form.password) }}
<br/>
<button class="btn btn-lg btn-primary btn-block" type="submit">Sign Up</button><br/>
</form>
<p style="text-align:center">Already have an account? <a href="/login">Login</a></p>
<br/>
<p style="text-align:center"><a href="/">Back Home</a></p>
</div> <!-- /container -->
{% endblock %}