-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistration_page.html
34 lines (28 loc) · 1.16 KB
/
registration_page.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Register Yourself</title>
<link rel="stylesheet" href="reg_page.css">
</head>
<body>
<div class="piggybank">
<img src="investment.svg" alt="oops image not found" class="piggybank_image_decor">
</div>
<div class="registration_text">
<h3 class="reg_text_decor">Make your progress right from here</h3>
</div>
<!-- <div class="details_section_parent"> -->
<form action="registration_page.php" method="post" class="details_sections">
<input type="text" placeholder="FIRST NAME" class="details_decor" name="first-name">
<input type="text" placeholder="LAST NAME" class="details_decor" name="last-name">
<input type="text" placeholder="EMAIL ID" class="details_decor" name="user-email">
<input type="text" placeholder="PIN" class="details_decor" name="user-password">
<!-- </div> -->
<div class="register_button">
<button class="register_button_decor">Register</button>
</div>
</form>
</body>
</html>