-
Notifications
You must be signed in to change notification settings - Fork 0
/
NewUser.aspx
77 lines (74 loc) · 2.24 KB
/
NewUser.aspx
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="NewUser.aspx.cs" Inherits="DiveLog.NewUser" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style type="text/css">
.newStyle1 {
background-image: url('images/NewUser_background.jpg');
}
.newStyle2 {
border: thin inset #FF0000;
empty-cells: hide;
}
.newStyle3 {
font-family: "Comic Sans MS";
font-size: x-large;
font-weight: 700;
font-style: italic;
font-variant: normal;
text-transform: uppercase;
color: #000000;
border-style: outset;
border-width: thick;
background-color: #033D3F;
}
</style>
</head>
<body class="newStyle1">
<form id="form1" runat="server">
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<div align="center">
<img src="images/absolutsuba_logo.jpg" />
</div>
<br />
<br />
<br />
<div>
<table align="center" class="newStyle2">
<tr>
<td align="center">
<asp:Label ID="Label1" runat="server" Text="DIVER NUMBER" style="color: #000000; font-weight: 700;"></asp:Label>
</td>
<td align="center">
<asp:TextBox ID="TextBox1" runat="server" style="color: #FFFFFF; background-color: #000000"></asp:TextBox>
</td>
</tr>
<tr>
<td colspan="2">
</td>
</tr>
<tr>
<td align="center">
<asp:Label ID="Label2" runat="server" Text="PASSWORD" style="color: #000000; font-weight: 700;"></asp:Label>
</td>
<td align="center">
<asp:TextBox ID="TextBox2" runat="server" style="color: #FFFFFF; background-color: #000000"></asp:TextBox>
</td>
</tr>
<tr>
<td colspan="2" align="center">
<asp:Button ID="Button1" runat="server" Text="REGISTER" CssClass="newStyle3" OnClick="Button1_Click" />
</td>
</tr>
</table>
</div>
</form>
</body>
</html>