-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3.2.2 SignUp_Loans.html
122 lines (99 loc) · 2.58 KB
/
3.2.2 SignUp_Loans.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up Loan</title>
</head>
<body>
<section class="sign-up">
<div class="container">
<div class="sign-up-box">
<h2>Enter Details</h2>
<form action="3.2.2 SignUp_Loans1.php" method="post">
<input type="text" id="name" name="name" placeholder="Enter Name" required>
<input type="tel" id="phone" name="phone" placeholder="+91 Enter Mobile Number" required>
<input type="email" id="email" name="email" placeholder="Enter Email" required>
<input type="password" id="password" name="password" placeholder="Enter Password" required>
<input type="password" id="password" name="password1" placeholder="Re-enter Password" required>
<input type="submit" value="Sign Up">
</form>
</div>
</div>
</section>
</body>
</html>
<style>
body{
background-image: url('https://st2.depositphotos.com/34422958/43229/i/600/depositphotos_432292944-stock-photo-financial-concept-meaning-bank-loan.jpg');
background-size: 1600px 700px;
background-repeat: no-repeat;
}
.sign-up .container {
display: flex;
justify-content: center;
}
.sign-up-box {
padding: 10px;
border-radius: 10px;
box-shadow: 4 10 10px rgba(0, 0, 0, 0.1);
width: 350px;
position: absolute;
top: 250px;
right: 550px;
height: 380px;
border:1.5px solid #000000;
background-color: #ffffff;
}
.sign-up h2 {
font-size: 28px;
margin-bottom: 20px;
text-align: center;
}
.sign-up form {
display: flex;
flex-direction: column;
align-items: center;
}
.sign-up label {
font-size: 18px;
margin-top: 10px;
}
.sign-up input[type="email"],
.sign-up input[type="text"],
.sign-up input[type="tel"]{
width: 65%;
padding: 10px;
margin: 5px 0;
border-radius: 5px;
border: 1px solid #000000;
}
.sign-up input[type="password"]{
width: 65%;
padding: 10px;
margin: 5px 0;
border-radius: 5px;
background-color: #ffffff;
color: #000000;
border: 1px solid #373737;
}
.sign-up input[type="password"]:focus {
outline: none;
}
.sign-up input[type="submit"] {
background-color: #ee0028;
color: #ffffff;
font-size: 17px;
cursor: pointer;
width: 40%;
padding: 10px;
margin: 5px 0;
border-radius: 5px;
border: 1px solid #ccc;
top:333px;
position: absolute;
}
.sign-up input[type="submit"]:hover {
background-color: #ac001d;
}
</style>