-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.php
35 lines (35 loc) · 886 Bytes
/
login.php
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
<!DOCTYPE html>
<head>
<meta charset="utf-8"/>
<title>Login</title>
<style type="text/css">
body{
width: 760px; /* how wide to make your web page */
background-color: teal; /* what color to make the background */
margin: 0 auto;
padding: 0;
font:12px/16px Verdana, sans-serif; /* default font */
}
div#main{
background-color: #FFF;
margin: 0;
padding: 10px;
}
</style>
</head>
<body><div id="main">
<h1>Welcome to the File Sharing System</h1>
<p>
<form name="login" action="loginCheck.php" method="GET">
<label>Username: <input type="text" name="username" /></label>
<input type="submit" value="Login" />
</form>
</p>
<p>
<form name="register" action="registerCheck.php" method="GET">
<label>New user? Create username: <input type="text" name="username" /></label>
<input type="submit" value="Register" />
</form>
</p>
</div></body>
</html>