-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.php
66 lines (65 loc) · 2.32 KB
/
signup.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bona+Nova+SC:ital,wght@0,400;0,700;1,400&family=Changa:wght@200..800&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Rajdhani:wght@300;400;500;600;700&family=Saira+Condensed:wght@100;200;300;400;500;600;700;800;900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap" rel="stylesheet">
<style>
.form-div {
display: flex;
justify-content: center;
align-items: center;
height: 90vh;
font-family: "Open Sans", sans-serif;
}
form {
display: flex;
flex-direction: column;
gap: 10px;
width: 350px;
padding: 20px;
}
button {
background-color: #65a765;
padding: 5px;
border: none;
}
input {
border: 1px solid #C0C0C0;
height: 25px;
font-size: 12px;
}
input:focus {
outline: none;
}
input::placeholder {
font-size: 12px;
}
p {
margin-bottom: 0 !important;
font-size: 30px;
font-family: "Titillium Web", sans-serif;
}
.account {
font-size: 14px;
}
</style>
</head>
<body>
<div class="form-div">
<form action="client.php" method="post" class="rounded shadow bg-white">
<p class="text-center text-secondary">Sign up</p>
<input type="text" name="name" class="rounded" placeholder="Name">
<input type="text" name="phone" class="rounded" placeholder="Phone">
<input type="password" name="password" class="rounded" placeholder="Password">
<button type="submit" class="text-light rounded">Submit</button>
<div class="mx-auto account mt-1">Already have an account? <a href="login.php">Login</a>.</div>
</form>
</div>
</body>
</html>