Added a username to the top for more clarity as well as a cancel link - could use better formatting

This commit is contained in:
Michael Patrick McGrath 2007-12-19 09:58:17 -07:00
parent ac07209366
commit 0f4a8cdf0b

View file

@ -7,7 +7,7 @@
<title>Edit Account</title>
</head>
<body>
<h2>Edit Account</h2>
<h2>Edit Account (${userName})</h2>
<form action="${tg.url('/user/save/%s' % userName)}" method="post">
<div class="field">
<label for="givenName">Full Name:</label>
@ -52,6 +52,7 @@
</div>
<div class="field">
<input type="submit" value="Save!" />
<a href="${tg.url('/user/view/%s' % userName)}">Cancel</a>
</div>
</form>
</body>