-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
44 lines (37 loc) · 1.36 KB
/
index.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
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WebChat</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="main">
<div id = "info">
<h2> login here </h2>
<!--login form-->
<form action="login.php" method="post">
<label><b>Username</b></label>
<input type="text" name="uname" placeholder="Username"><br><br>
<label><b>Password</b></label>
<input type="text" name="pass" placeholder="password"><br><br>
<button style="background-color: #6495ed;color: white;" type="submit" size="40px"><b>Login</b>
</button>
</form>
<!--sign up form-->
<form action="signup.php" method="post">
<h2>don't have an account? sign up here</h2>
<label>Username:</label>
<input type="text" name="uname" placeholder="Username"><br><br>
<label>Add email:</label>
<input type="text" name="Email" placeholder = "email"><br><br>
<label> Password:</label>
<input type="text" name="Password" placeholder = "Password"><br><br>
<button style="background-color: #6495ed;color: white;" type="submit" size="40px"><b>Sign up</b>
</button>
</form>
</div>
</div>
</body>
</html>