-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
133 lines (109 loc) · 4.24 KB
/
Copy pathindex.php
File metadata and controls
133 lines (109 loc) · 4.24 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nimsara Computers - Signup</title>
<link rel="icon" href="fevicone/favicon.ico">
<link rel="stylesheet" href="css\bootstrap.css" />
<link rel="stylesheet" href="style.css" />
<style>
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.card {
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card-header {
color: #fff;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
text-align: center;
}
.card-body {
padding: 30px;
}
.title01 {
font-size: 2.5rem;
font-weight: bold;
}
.logo1 {
font-size: 1.2rem;
margin-bottom: 20px;
}
.form-label {
font-weight: bold;
}
.btn-primary {
background-color: #007bff;
border: none;
}
.create-account {
text-decoration: none;
}
.create-account:hover {
text-decoration: underline;
}
</style>
</head>
<body class="container login-container-inner new-login-container-inner main-body">
<div class="row justify-content-center">
<div class="col-12">
<div class="row">
<div class="col-12 logo"></div>
<div class="col-12">
<p class="text-center title01">Hi, Welcome to Nimsara Computers</p>
</div>
</div>
</div>
<div class="col-6 d-none d-lg-block background"></div>
<div class="row justify-content-center">
<div class="card">
<div class="card-header">
<h2 class="title01 text-center">user-Sign Up </h2>
</div>
<div class="card-body">
<div class="flex-div">
<div class="name-content">
<p class="logo1 color">Welcome to our computer shop</p>
</div>
<div class="col-12 d-none " id="msgdiv1">
<div class="alert alert-danger " role="alert" id="msg1">
</div>
</div>
<div class="form-group">
<label for="firstname" class="form-label">First Name:</label>
<input type="text" class="form-control" id="firstname" placeholder="Enter your first name">
</div>
<div class="form-group">
<label for="lastname" class="form-label">Last Name:</label>
<input type="text" class="form-control" id="lastname" placeholder="Enter your last name">
</div>
<div class="form-group">
<label for="email" class="form-label">Email Address:</label>
<input type="email" class="form-control" id="email" placeholder="Enter your email">
</div>
<div class="form-group">
<label for="password" class="form-label">Password:</label>
<input type="password" class="form-control" id="password" placeholder="Enter your password">
</div>
<div class="form-group">
<label for="mobile_number" class="form-label col-12">Mobile Number:</label>
<input type="text" class="form-control " id="mobile_number" placeholder="Enter your mobile number">
</div>
<center> <button class="btn btn-primary mt-3" onclick="singup();">Sign Up</button></center>
<hr class="mt-4">
<a href="loging.php" class="mt-2 d-block text-center">Already have an account? Sign in</a>
</div>
</div>
</div>
</div>
</div>
<script src="js\bootstrap.bundle.js"></script>
<script src="script.js"></script>
</body>
</html>