source: trunk/gsdl3/packages/gsdl-as/lib/templates/register.vm@ 8738

Last change on this file since 8738 was 8738, checked in by schweer, 19 years ago

user authentication works; user information and subscriptions/predicates are stored to thedatabase

  • Property svn:keywords set to Author Date Id Revision
File size: 1.0 KB
Line 
1<?xml version="1.0"?>
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4<html xmlns="http://www.w3.org/1999/xhtml">
5<head>
6<title>Greenstone Digital Library Software</title>
7<link href="/alerting/form.css" rel="stylesheet" type="text/css"/>
8</head>
9<body>
10<div id="content">
11<h3>Alerting Service for Greenstone</h3>
12<p>Register</p>
13#if ($error)
14<div class="error">
15An error occured:<br/>
16$errormessage
17</div>
18#end
19<form action="/alerting/service?action=register" method="post"/>
20<table>
21<tr>
22<th><label for="username">username</label></th><td><input type="text" name="username" id="username"/></td>
23</tr>
24<tr>
25<th><label for="password">password</label></th><td><input type="password" name="password" id="password"/></td>
26</tr>
27<tr>
28<th><label for="password2">repeat password</label></th><td><input type="password" name="password2" id="password2"/></td>
29</tr>
30</table>
31<br/>
32<input type="submit" value="create account"/>
33</form>
34</div>
35
36</body>
37</html>
Note: See TracBrowser for help on using the repository browser.