-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistration_page
64 lines (62 loc) · 2.24 KB
/
registration_page
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Registration Page</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
background-image: url('https://source.unsplash.com/1600x900/?registration');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 100vh;
}
.container {
max-width: 400px;
margin: 50px auto;
border: 1px solid #ddd;
padding: 30px;
border-radius: 10px;
background-color: rgba(255, 255, 255, 0.8);
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
font-weight: bold;
}
.btn-register {
width: 100%;
}
</style>
</head>
<body>
<div class="container">
<h2 class="mb-4">Register</h2>
<form>
<div class="form-group">
<label for="first_name">First Name</label>
<input type="text" class="form-control" id="first_name" name="first_name" required>
</div>
<div class="form-group">
<label for="last_name">Last Name</label>
<input type="text" class="form-control" id="last_name" name="last_name" required>
</div>
<div class="form-group">
<label for="email">Email/Username</label>
<input type="email" class="form-control" id="email" name="email" required>
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" class="form-control" id="password" name="password" minlength="6" required>
<small class="form-text text-muted">Minimum 6 characters</small>
</div>
<button type="submit" class="btn btn-primary btn-register">Register</button>
</form>
<p class="mt-3 text-center">Already have an account? <a href="C:\Users\aDMIN\OneDrive\Desktop\registration\login_page.html">Login here</a></p>
</div>
</body>
</html>