summaryrefslogtreecommitdiff
path: root/stashbox/templates/useradd.html
diff options
context:
space:
mode:
authorAaron Williamson <aaron@copiesofcopies.org>2011-07-01 14:47:02 -0400
committerAaron Williamson <aaron@copiesofcopies.org>2011-07-01 14:47:02 -0400
commitefc395dfbec772d09703b4cfbeead17c3f38a2cb (patch)
tree19724ddd2ba2dd8de2b389a14da4f90eb23f09a8 /stashbox/templates/useradd.html
parent20a15553fa0fa4138c468d2892cd07d6baa061d2 (diff)
Added interface code
Diffstat (limited to 'stashbox/templates/useradd.html')
-rw-r--r--stashbox/templates/useradd.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/stashbox/templates/useradd.html b/stashbox/templates/useradd.html
new file mode 100644
index 0000000..a916386
--- /dev/null
+++ b/stashbox/templates/useradd.html
@@ -0,0 +1,25 @@
+$def with (users, form)
+
+<div class="main">
+
+ <table class="itemlist">
+ <tr>
+ <th>User</th>
+ <th>Password</th>
+ </tr>
+ $for user in users:
+ <tr>
+ <td>$user.username</td>
+ <td>$user.password</td>
+ </tr>
+ </table>
+
+</div>
+
+<div class="right">
+
+ <form action="" method="post">
+ $:form.render()
+ </form>
+
+</div>