-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
165 lines (152 loc) · 5.21 KB
/
index.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="fa" dir="rtl">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link href="logo.png" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="media.css" />
<title>پیشخوان رسالت</title>
</head>
<body>
<!-- TOP NAVIGATION -->
<nav>
<p class="welcome">نام کاربری و رمز خود را وارد کنید</p>
<a href="https://github.com/itsalinazarpour/" target="_blank">
<img src="logo.png" alt="logo" class="logo" />
</a>
<form class="login">
<button class="login__btn">ورود</button>
<input
type="text"
placeholder="رمز"
maxlength="4"
class="login__input login__input--pin"
required
/>
<input
type="text"
placeholder="نام کاربری"
class="login__input login__input--user"
required
autofocus
/>
<!-- In practice, use type="password" -->
</form>
</nav>
<main class="app">
<!-- BALANCE -->
<div class="balance">
<div>
<p class="balance__label">مانده حساب</p>
<p class="balance__date">در <span class="date">05/03/2037</span></p>
</div>
<p class="balance__value" lang="en" dir="ltr">0000 IRT</p>
</div>
<!-- MOVEMENTS -->
<div class="movements">
<div class="movements__row">
<div class="movements__type movements__type--deposit">2 - واریز</div>
<div class="movements__date">3 روز پیش</div>
<div class="movements__value" lang="en" dir="ltr">40000 IRT</div>
</div>
<div class="movements__row">
<div class="movements__type movements__type--withdrawal">
1 - برداشت
</div>
<div class="movements__value" lang="en" dir="ltr">-10000 IRT</div>
</div>
</div>
<!-- SUMMARY -->
<div class="summary">
<p class="summary__label">ورودی</p>
<p class="summary__value summary__value--in" lang="en" dir="ltr">
0000 IRT
</p>
<p class="summary__label">خروجی</p>
<p class="summary__value summary__value--out" lang="en" dir="ltr">
0000 IRT
</p>
<p class="summary__label summary__label--interest">سود بانکی</p>
<p class="summary__value summary__value--interest" lang="en" dir="ltr">
0000 IRT
</p>
<button class="btn--sort">ترتیب (تاریخ)</button>
</div>
<!-- OPERATION: TRANSFERS -->
<div class="operation operation--transfer">
<h2>انتقال وجه</h2>
<form class="form form--transfer">
<input type="text" class="form__input form__input--to" />
<input type="number" class="form__input form__input--amount" />
<button class="form__btn form__btn--transfer">→</button>
<label class="form__label" style="font-size: 1.2rem"
>دریافت کننده</label
>
<label class="form__label">مبلغ</label>
</form>
</div>
<!-- OPERATION: LOAN -->
<div class="operation operation--loan">
<h2>
درخواست وام
<small style="font-size: 1.2rem">بدون ضامن در سه ثانیه (:</small>
</h2>
<form class="form form--loan">
<input type="number" class="form__input form__input--loan-amount" />
<button class="form__btn form__btn--loan">→</button>
<label class="form__label form__label--loan">مبلغ</label>
</form>
</div>
<!-- OPERATION: CLOSE -->
<div class="operation operation--close">
<h2>خارج شدن از حساب</h2>
<form class="form form--close">
<input type="text" class="form__input form__input--user" />
<input
type="password"
maxlength="6"
class="form__input form__input--pin"
/>
<button class="form__btn form__btn--close">→</button>
<label class="form__label">نام کاربری</label>
<label class="form__label">رمز</label>
</form>
</div>
<!-- LOGOUT TIMER -->
<p class="logout-timer">
زمان باقی مانده: <span class="timer">05:00</span>
</p>
</main>
<!-- accounts -->
<table style="z-index: -1">
<caption>
* test data
</caption>
<thead>
<tr align="center">
<td>مالک حساب</td>
<td>نام کاربری</td>
<td>رمز</td>
</tr>
</thead>
<tbody class="table-tbody-accounts">
<tr>
<td>David Lio</td>
<td>dl</td>
<td>1111</td>
</tr>
<tr>
<td>Jessica Davis</td>
<td>jd</td>
<td>2222</td>
</tr>
</tbody>
</table>
<!-- <footer>
</footer> -->
<script src="script.js" type="text/javascript"></script>
</body>
</html>