mirror of https://github.com/mitsuhiko/flask.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
473 B
17 lines
473 B
15 years ago
|
{% extends "layout.html" %}
|
||
|
{% block title %}Edit Profile{% endblock %}
|
||
|
{% block body %}
|
||
|
<h2>Edit Profile</h2>
|
||
|
<form action="" method=post>
|
||
|
<dl>
|
||
|
<dt>Name:
|
||
|
<dd><input type=text name=name size=30 value="{{ form.name }}">
|
||
|
<dt>E-Mail
|
||
|
<dd><input type=text name=email size=30 value="{{ form.email }}">
|
||
|
</dl>
|
||
|
<p>
|
||
|
<input type=submit value="Update profile">
|
||
|
<input type=submit name=delete value="Delete">
|
||
|
</form>
|
||
|
{% endblock %}
|