-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathform.html
22 lines (21 loc) · 858 Bytes
/
form.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login/Sign up</title>
<link rel="stylesheet" href="form.css">
</head>
<body>
<div id="divform">
<form action="" method="post">
<h1 style="text-shadow:2px 2px pink;">LOGIN</h1>
<p>E-mail address<br> <input type="text" name="email" required placeholder="Type your email" id="email" style="border-radius: 10px;"></p>
<p>Password<br> <input type="password" name="pass" id="pass" required placeholder="Type your password"style="border-radius: 10px;"></p>
<p><input type="submit" name="submit" id="submit"></p>
</form>
</div>
<!--backend will store data-->
</body>
</html>