-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSAM.aspx
More file actions
33 lines (29 loc) · 937 Bytes
/
SAM.aspx
File metadata and controls
33 lines (29 loc) · 937 Bytes
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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SAM.aspx.cs" Inherits="Database_Project.Login" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<div style="margin-left: 400px">
<h2>Please Register!</h2>
Name<br />
<asp:TextBox ID="name" runat="server"></asp:TextBox>
<br />
Username<br />
<asp:TextBox ID="username" runat="server"></asp:TextBox>
<br />
Password
<br />
<asp:TextBox ID="password" type="password" runat="server"></asp:TextBox>
<br />
<br />
<asp:Button ID="loginbutton" runat="server" Text="Register" OnClick="loginbutton_Click" />
<br />
<div />
</div>
</form>
</body>
</html>