-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (48 loc) · 2.84 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
<!doctype html>
<html lang="en" dir="rtl">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Calc sum of cart invioce</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class=" question-totall text-center mt-5 pt-5" id="box">
<h1 class="py-3">محاسبه قیمت فاکتور</h1>
<h3>خوش آمدید ؛ لطفا تعداد اقلامی که خریداری نموده اید را وارد نمایید</h3>
<input id="commodity-number" type="text" class=" w-50 mx-auto p-3 mt-5 fw-bold rounded-2" placeholder="مثال:12">
<button class="btn btn-danger w-50 p-3 mt-4" onclick="check()">مرحله بعدی </button>
<span class="text-warning d-block my-4 error-message"></span>
</div>
<!-- get price of commodity -->
<div class="d-none price-box text-center mt-5 pt-5">
<h1>محاسبه قیمت کالاهای خریداری شده توسط شما</h1>
<h3 id="price-input-notice" class="my-4">لطفا قیمت کالای خریداری شده شماره 1 را در باکس زیر وارد کنید و روی دکمه بعدی کلیک کنید</h3>
<input id="price-box-input" class=" w-50 p-3 rounded-2 border-1 fw-bold my-3" type="text" id="price-box" placeholder="مثال : 1,200,000">
<button class="btn btn-success w-50 mx-auto p-3" onclick="calc()">بعدی</button>
<span class="d-block my-4 error-message2"></span>
</div>
<!-- show factor -->
<div class="show-factor mt-5 pt-5">
<div class="card w-50 mx-auto ">
<h5 class="card-header text-success">با تشکر از خرید شما</h5>
<div class="card-body">
<h5 class="card-title">حاصل فاکتور شما عبارست است از </h5>
<p class="card-text" id="finall-price"></p>
<a href="#" class="btn btn-primary">مشاهده در گیت هاب</a>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"
crossorigin="anonymous"></script>
<script src="cart.js"></script>
</body>
</html>