~nchohan/+junk/mytools

« back to all changes in this revision

Viewing changes to sample_apps/ajaxchat/templates/edit_user.html

  • Committer: root
  • Date: 2010-11-03 07:43:57 UTC
  • Revision ID: root@appscale-image0-20101103074357-xea7ja3sor3x93oc
init

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<html>
 
2
  <head>
 
3
    <link type="text/css" rel="stylesheet" href="/css/main.css" />
 
4
  </head>
 
5
  <body>
 
6
{% block title %}User Info{% endblock %}
 
7
{% block content %}
 
8
<h1>My User Profile</h1>
 
9
<p>Email: {{ queried_user.greeting_user.email }}</p>
 
10
<form action="/edituser/{{ queried_user.greeting_user.email }}" method="POST" enctype="multipart/form-data">
 
11
Avatar URL (around 48*48px): <br/>
 
12
<input type="text" name="user_picture" value="{{ queried_user.picture }}"><br>
 
13
Website: <br/>
 
14
<input type="text" name="user_website" value="{{ queried_user.website }}"/><br>
 
15
Seated (e.g. "2 rows back, 10 from right"): <br/>
 
16
<input type="text" name="user_seated" value="{{ queried_user.seated }}"/><br/>
 
17
<input type="submit" value="Save User Information">
 
18
</form>
 
19
{% endblock %}
 
20
 </body>
 
21
</html>
 
 
b'\\ No newline at end of file'