-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistration.html
97 lines (93 loc) · 3.74 KB
/
registration.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login Page</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<style>
body {
background-image: url("C:\\Users\\nasin\\Downloads\\gg.jpg"); /* Replace with your actual image URL */
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.logo {
max-width: 200px;
}
.contact-info {
font-weight: bold;
color:orange;
}
.contact-info span {
font-weight: bold;
color:orange;
}
.contact-info i {
margin-right: 5px;
color:orange;
font-weight: bold;
}
.form-group label {
font-weight: bold;
}
.btn-orange {
background-color: orange;
color: white;
}
.form-container {
background-color: #f0f0f0; /* Light grey background */
border: 5px solid #ccc; /* Grey border */
padding: 20px; /* Space between the form and the border */
margin: 20px; /* Margin around the container */
width: 40; /* Adjust width to fit its content */
border-radius:1rem;
}
</style>
</head>
<body>
<div class="container my-5">
<div class="row">
<div class="col-md-6">
<div class="form-container">
<img src="C:\Users\nasin\Downloads\st.jpg" alt="Logo" class="logo mb-4">
<h1 class="contact-info">Registration information</h1><br></br>
<p class="contact-info"><span><img src="C:\Users\nasin\Downloads\a.jpg" alt="Phone Icon" class="me-2" style="width: 15px; height: 15px;">198 west 21th street, suite 731 New</span></p>
<p class="contact-info"><span><img src="C:\Users\nasin\Downloads\p.jpg" alt="Phone Icon" class="me-2" style="width: 15px; height: 15px;"> +1234 9567 890</span></p>
<p class="contact-info"><span><img src="C:\Users\nasin\Downloads\m.jpg" alt="Phone Icon" class="me-2" style="width: 15px; height: 15px;"> [email protected]</span></p>
</div></div>
<div class="col-md-6">
<h2 class="contact-info">Get In Touch</h2>
<form>
<div class="form-group">
<label for="firstName">Your first name</label>
<input type="text" class="form-control" id="firstName" placeholder="Enter your first name">
</div>
<div class="form-group">
<label for="lastName">Your Last name</label>
<input type="text" class="form-control" id="lastName" placeholder="Enter your last name">
</div>
<div class="form-group">
<label for="email">Your email address</label>
<input type="email" class="form-control" id="email" placeholder="Enter your email address">
</div>
<div class="form-group">
<label for="phone">Your Phone no</label>
<input type="tel" class="form-control" id="phone" placeholder="Enter your phone number">
</div>
<div class="form-group">
<label for="message">Say something about us</label>
<textarea class="form-control" id="message" rows="3"></textarea>
</div>
<center>
<button type="submit" class="btn btn-orange">Register</button></center>
</form>
</div>
</div>
</div>
<script src="https://kit.fontawesome.com/yourkit.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>