-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (44 loc) · 1.79 KB
/
index.html
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
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 id="topText">Sign In</h1>
<img id="loadImg" src="C:\Users\User\Pictures\Bhaila 2081\bhailaface-4.jpg" alt="An image of me" width="200">
<br><br>
<form id="userForm" action="newpage.html">
<div id="userInfo">
<label id="labelFirstName">First Name:</label>
<input type="text" id="firstName" placeholder="Ram" required>
<br><br>
<label id="labelLastName">Last Name:</label>
<input type="text" id="lastName" placeholder="Bahadur" required>
<br><br>
<label id="labelEmail">Email:</label>
<input type="text" id="userEmail" placeholder="[email protected]" required>
<br><br>
<label id="labelPass">Password:</label>
<input type="password" id="userPass" required>
</div>
<div id="confirmId">
<p id="terms">Lorem, ipsum dolor sit amet consectetur adipisicing elit. Iusto neque quos a debitis!
Qui incidunt ducimus esse tempora doloribus veritatis expedita, ad,
exercitationem tenetur perferendis eligendi illo aut, voluptates numquam?
</p>
</div>
<br>
<div id="ChkBoxBtn">
<input type="checkbox" id="agreement" required>
<label>Yes, I agree to the terms and conditions.</label>
<br>
<input type="submit" id="Btn" value="submit">
<!-- <button id="Btn" type="submit">Log In</button> -->
</div>
</form>
<script src="index.js"> </script>
</body>
</html>