-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreateconsumer.html
More file actions
34 lines (27 loc) · 1.11 KB
/
createconsumer.html
File metadata and controls
34 lines (27 loc) · 1.11 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
<html>
<head>
{% include "styles.html" %}
<title> BeneTag </title>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
</head>
<body>
{% include "navbar.html" %}
<h2>
{% if redirect %}
<form action="/storeconsumer?redirect={{redirect}}" enctype="multipart/form-data" method="post">
{% else %}
<form action="/storeconsumer" enctype="multipart/form-data" method="post">
{% endif %}
{% if msg %}
You need to create a profile page first<br />
{% endif %}
<div>Name: <input name="name" id="name"></input></div>
<div>Profile: <textarea name="profile"></textarea></div></br>
<div>Picture:<input type="file" name="picture"/></div>
<div><input type="submit" value="Sign up" a class="span4 btn medium"></div>
</form></h2>
{% include "footer.html" %}
</body>
</html>