-
Notifications
You must be signed in to change notification settings - Fork 0
/
3.1.1 Apply_Credit_Card.html
141 lines (114 loc) · 3.13 KB
/
3.1.1 Apply_Credit_Card.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Card Apply</title>
</head>
<body>
<section class="apply">
<div class="container">
<div class="apply-box">
<form action="3.1.1 Apply_Credit_Card1.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>
<select id="cardTypes">
<option value="cards">Cards</option>
<option value="millennia">First Millennia</option>
<option value="swmp">First SWMP</option>
<option value="classic">First Classic</option>
<option value="power">First Power</option>
<option value="wealth">First Wealth</option>
<option value="vistara">Club Vistara</option>
</select>
<input type="pan" id="pan" name="pan" placeholder="Enter PAN number" required>
<input type="address" id="address" name="address" placeholder="Enter Address" required>
<input type="pin" id="pin" name="pin" placeholder="Enter Pin Code" required>
<input type="submit" value="Apply">
</form>
</div>
</div>
</section>
</body>
</html>
<style>
body{
background-image: url('https://st2.depositphotos.com/1560768/6826/i/600/depositphotos_68260497-stock-photo-apply-for-credit-card.jpg');
background-size: 800px 700px;
background-repeat: no-repeat;
}
.apply.container {
display: flex;
justify-content: center;
}
.apply-box {
padding: 15px;
border-radius: 10px;
box-shadow: 4 10 10px rgba(0, 0, 0, 0.1);
width: 330px;
position: absolute;
top: 130px;
left:50%;
height: 365px;
background-color: #ffffff;
border:2px solid #000000; ;
}
.apply h2 {
font-size: 28px;
margin-bottom: 20px;
text-align: center;
}
.apply form {
display: flex;
flex-direction: column;
align-items: center;
}
.apply label {
font-size: 18px;
margin-top: 10px;
}
.apply input[type="email"],
.apply input[type="text"],
.apply input[type="tel"],
.apply input[type="pan"],
.apply input[type="address"],
.apply input[type="pin"]
{
width: 62%;
padding: 10px;
margin: 5px 0;
border-radius: 5px;
border: 1px solid #000000;
}
#cardTypes {
width: 69%;
padding: 10px;
margin: 4px;
border-radius: 5px;
border: 1px solid #000000;
background-color: #ffffff;
color: #333;
top:290px;
}
#cardTypes:focus{
outline: none;
border-color: #000000; /* Change border color on focus */
}
.apply input[type="submit"] {
background-color: #ee0028;
color: #ffffff;
font-size: 17px;
cursor: pointer;
width: 40%;
padding: 8px;
margin: 5px 0;
border-radius: 5px;
border: 1px solid #ccc;
top:87.2%;
position: absolute;
}
.apply input[type="submit"]:hover {
background-color: #ac001d;
}
</style>