forked from howardpchen/capricorn
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcreate_account.html
38 lines (36 loc) · 1.01 KB
/
create_account.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<link rel="stylesheet" type="text/css" href="/capricorn/style.css" />
<p align=center><a href="index.php"><img src="logo.png"></a></p>
<table width="500" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC">
<tr>
<form name="form1" method="post" action="find_user.php">
<td>
<table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#FFFFFF">
<tr>
<td colspan="3"><strong>Creat Account</strong></td>
</tr>
<tr>
<td width="120">First Name</td>
<td> </td>
<td><input name="myfirstname" type="text" id="myfirstname"></td>
</tr>
<tr>
<td width="120">Last Name</td>
<td> </td>
<td><input name="mylastname" type="text" id="mylastname"></td>
</tr>
<!--
<tr><td colspan="3" align="center"><strong>OR</strong></tr>
<tr>
<td width="120">Accession</td>
<td> </td>
<td><input name="myaccession" type="text" id="myaccession"></td>
</tr>
-->
<tr>
<td colspan=3 align=center><input type="Submit" value="Submit">
</tr>
</table>
</td>
</form>
</tr>
</table>