-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuntitled
More file actions
45 lines (36 loc) · 1.36 KB
/
untitled
File metadata and controls
45 lines (36 loc) · 1.36 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{% extends 'base.html' %}
{% block body %}
<div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main">
<h1 class="page-header">{{ type }} data</h1>
<div class="panel panel-default">
<div class="panel-body ">
<div class="tab-pane" id="signup">
<form action="{{ url_for('sign_up') }}" method="post" class="form-horizontal">
<fieldset>
<!-- Sign Up Form -->
<!-- Text input-->
{% if data %}
{% for d in data %}
<div class="control-group">
<raw>
<label class="control-label" for="Email">{{d}}:</label>
<div class="controls">
<input id="Email" name="email" class="form-control" type="text" class="input-large" required="">
</div>
</raw>
</div>
{% endfor %}
{% endif %}
<!-- Multiple Radios (inline) -->
<br>
<!-- Button -->
<div class="control-group">
<label class="control-label" for="confirmsignup"></label>
<div class="controls">
<button id="confirmsignup" name="confirmsignup" class="btn btn-success">Submit</button>
</div>
</form>
</div>
</div>
</div>
{% endblock %}