-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditconsumer.html
More file actions
30 lines (24 loc) · 1.09 KB
/
editconsumer.html
File metadata and controls
30 lines (24 loc) · 1.09 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
<html>
<head>
{% include "styles.html" %}
<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>
<body>
{% include "navbar.html" %}
<h2>
{% if redirect %}
<form action="/storeeditedconsumer?redirect={{redirect}}" enctype="multipart/form-data" method="post">
{% else %}
<form action="/storeeditedconsumer" enctype="multipart/form-data" method="post">
{% endif %}
<div>Name: <input name="name" id="name" value="{{name_old}}"></input></div>
<div>Profile: <textarea name="profile">{{profile_old}}</textarea></div></br>
<div>Picture:<input type="file" name="picture"/></div>
<div><input type="submit" value="Save" a class="span4 btn medium"></div>
</form></h2>
{% include "footer.html" %}
</body>
</html>