-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.html
More file actions
23 lines (23 loc) · 829 Bytes
/
code.html
File metadata and controls
23 lines (23 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Login Form</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container">
<h1 class="label">User Login</h1>
<form class="login_form" action="target.php" method="post" name="form" onsubmit="return validated()">
<div class="font">Email or Phone</div>
<input autocomplete="off" type="text" name="email">
<div id="email_error">Please fill up your Email or Phone</div>
<div class="font font2">Password</div>
<input type="Password" name="password">
<div id="pass_error">Please fill up your Password</div>
<button class="submit">Login</button>
</form>
</div>
<script src="valid.js"></script>
</body>
</html>