-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask1.html
More file actions
29 lines (22 loc) · 807 Bytes
/
Copy pathtask1.html
File metadata and controls
29 lines (22 loc) · 807 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>sign in page</title>
<link rel="stylesheet" href="login.css">
<script defer src="login.js"></script>
</head>
<body>
<h1> Sign in to Clever</h1>
<div class="form">
<label for="mail_id">E-mail</label>
<br/>
<input type="email" id="mail_id" placeholder="@mail.com" name="email" required><br/>
<label for="pass"> password</label><br/>
<input type="password" id="pass" placeholder="password" name="pass" required><br/>
<span id="get_pass" class="column">Forgot Password?</span>
<br/>
<button type="submit" >Sign in </button><br/>
<p id="para">Create new account <a href="C:\Users\Lenovo\Desktop\interncom\loginpage\register_form.html"> Sign Up</a></p>
</div>
</body>
<html>