forked from webdevelopmentteam1401/HW1-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buy.html
145 lines (131 loc) · 5.07 KB
/
buy.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
142
143
144
145
<!DOCTYPE html>
<html lang="fa" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>بیلیکو، برای سفر خود برنامهریزی کنید!</title>
<link rel="icon" type="image/x-icon" href="assets/images/logo.png">
<link rel="stylesheet" href="css/app.css">
<link rel="stylesheet" href="css/component.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn&display=swap');
</style>
</head>
<div>
<nav class="top-bar topbar-responsive">
<div class="top-bar-title">
<a class="topbar-responsive-logo" href="#">
<div style="display: flex; align-items: center">
<img
src="assets/images/logo.png"
style="margin-left: 1rem; width: 50px; height: 50px"
alt="logo"/>
</div>
<h1 class="primary typography-h3-500"
style="
display: flex;
flex-direction: column;
align-self: center;
color: #1FABE0;
margin: 0">
بیلیکو
</h1>
</a>
</div>
</nav>
</div>
<body>
<div>
<h3
style="display: flex; margin-right: 3rem; align-items: center; margin-top: 1rem; width: 100px; height: 100px">
صندلیها
</h3>
</div>
<div class="grid-container2" style="margin-bottom: 1.5rem; margin-right: 1.5rem; margin-top: 0rem; width: 700px; ">
<div class="grid-x grid-margin-x" style="padding-top: 1rem; border: #00000029 solid 1px; border-radius: 2rem; background-color: white; margin: 1rem">
<div class="cell large-2 small-5 center-content"
style="width: 100px">
<div class="typography center-content" style="text-align: center;">
<h4 class="text-secondary font-bold">
مبدا:
<br>
سمرقند
</h4>
</div>
</div>
<div class="cell large-2 small-5 center-content" style="width: 250px">
<div class="typography center-content" style="text-align: center;">
<h6 class="text-secondary font-bold">
مدت زمان مسیر:
<br>
۵۶ دقیقه
</h6>
</div>
</div>
<div class="cell large-2 small-5 center-content" style="width: 80px">
<div class="typography center-content" style="direction: ltr; text-align: center;">
<h4 class="text-secondary font-bold">
:مقصد
<br>
تهران
</h4>
</div>
</div>
<div class="cell large-2 small-5 center-content" style="width: 100px">
<div class="typography center-content" style="text-align: center;">
<h6 class="text-secondary font-bold">
ساعت حرکت:
<br>
۲ بعد از ظهر
</h6>
</div>
</div>
<div class="cell large-2 small-5 center-content" style="width: 100px">
<div class="typography center-content" style="text-align: center;">
<h6 class="text-secondary font-bold">
نوع پرواز:
<br>
Economic
</h6>
</div>
</div>
</div>
</div>
<form>
<div class="user-box"
style="text-align: center;">
<label>نام و نام خانوادگی مسافر اول</label>
<input type="text" name="" required=""
style="width: 25%; text-align: center; display: inline-block;">
</div>
<div class="user-box"
style="text-align: center;">
<label>شمارهی پاسپورت مسافر اول</label>
<input type="text" name="" required=""
style="width: 25%; text-align: center; display: inline-block;">
</div>
<hr style="width:50%; text-align:center; height:2px;border-width:0;color:gray;background-color:gray">
<div class="user-box"
style="text-align: center;">
<label>نام و نام خانوادگی مسافر دوم</label>
<input type="text" name="" required=""
style="width: 25%; text-align: center; display: inline-block;">
</div>
<div class="user-box"
style="text-align: center;">
<label>شمارهی پاسپورت مسافر دوم</label>
<input type="text" name="" required=""
style="width: 25%; text-align: center; display: inline-block;">
</div>
<button class="buy-button" role="button"
style="width:10%; text-align: center; display: grid; margin: auto">
ثبت اطلاعات
</button>
</form>
</body>
<!--included scripts-->
<script src="node_modules/alertifyjs/build/alertify.min.js"></script>
<script src="scripts/signUpValidation.js"></script>
</body>
</html>