forked from MrAyushBajpai/Disaster-Management-Tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignups.html
72 lines (57 loc) · 3.12 KB
/
signups.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Disaster Management India</title>
<style>
body{
background-image: url('img/signupbg.jpg');
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
}
</style>
<!-- Link to your external CSS file -->
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="icon" href="img/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
<!-- Bootstrap CSS (You can also link to the Bootstrap CDN as before) -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
</head>
<body>
<!-- Header -->
<div id="navbar-container"></div>
<!-- MAIN CONTENT HERE-->
<div class="signup-box">
<form action="#" method="post">
<p class="signup">Signup</p>
<p class="p2 login-link">It will only take a minute</p>
<label>First Name</label>
<input type="text" name="first_name" placeholder="First Name" required>
<label>Last Name</label>
<input type="text" name="last_name" placeholder="Last Name">
<label>E-mail ID</label>
<input type="email" name="email" placeholder="E-mail ID" required>
<label>Password</label>
<input type="password" name="password" placeholder="Password" required>
<label>Confirm Password</label>
<input type="password" name="confirm_password" placeholder="Confirm Password" required>
<input class="submit" type="submit" value="Submit">
<p class="agreement-text">By clicking the sign-up button, you agree to the terms and conditions and privacy policy.</p>
<p class="p2 login-link">Already have an account? <a href="login.html">Login Here</a></p>
</form>
</div>
<!-- Footer -->
<div id="footer-container"></div>
<!-- Load the JavaScript from navbar-loader.js -->
<script src="js/navbar-loader.js"></script>
<script src="js/footer-loader.js"></script>
<!-- Bootstrap JS and jQuery (optional) -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-Rx+T1VzGupg4BHQYs2gCW9It+akI2MM/mndMCy36UVfodzcJcF0GGLxZIzObiEfa" crossorigin="anonymous"></script>
</body>
</html>