-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
38 lines (32 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="slidestyle.css">
<link href="https://fonts.googleapis.com/css2?family=Jost:wght@500&display=swap" rel="stylesheet">
</head>
<body>
<div class="main">
<input type="checkbox" id="chk" aria-hidden="true">
<div class="signup">
<form action="includes/formhandler.php" method="get">
<label for="chk" aria-hidden="true">Sign up</label>
<input type="text" name="txt" placeholder="User name"required="">
<input type="email" name="email" placeholder="Email"required="">
<input type="password" name="pswrd" placeholder="Password"required="">
<button href="#">Sign up</button>
</form>
</div>
<div class="login">
<form action="includes/formhandler.php" method="get">
<label for="chk"aria-hidden="true">Login</label>
<input type="email" name="email" placeholder="Email"required="">
<input type="password" name="pswrd" placeholder="Password"required="">
<button>Login</button>
</form>
</div>
</div>
</body>
</html>