-
Notifications
You must be signed in to change notification settings - Fork 0
/
signUp.html
68 lines (65 loc) · 4.17 KB
/
signUp.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
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="2G9">
<link href="./output.css" rel="stylesheet">
<title>Registration Form</title>
<link rel="icon" type="image/png" href="./images/logo.png">
<!-- Icons -->
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
<!-- Fonts -->
<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=Noto+Kufi+Arabic:[email protected]&display=swap" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<script src="./js/script.js"></script>
</head>
<style>
body {
font-family: "Noto Kufi Arabic", sans-serif;
}
</style>
<body >
<!-- Start Navbar -->
<div id="navbar"></div>
<!-- End Navbar -->
<!-- Start Section -->
<div class="container mx-auto flex flex-col justify-center items-center p-4 md:p-20 gap-5">
<div class="mb-5 text-center">
<h2 class="text-[#2B2F4E] font-bold text-xl md:text-[40px] mb-4">👏 إنشاء حساب</h2>
<p class="text-[#878787] font-bold text-xs md:text-sm">حياك الله نحن فى انتظار خدمتك طوال الوقت!</p>
</div>
<div class="w-full max-w-xs md:max-w-md space-y-4">
<div class="flex items-center rounded-2xl bg-[#FAFAFA] ">
<input type="text" placeholder="رقم الهاتف" class="flex-grow text-xs md:text-sm text-[#6C6C6C] outline-none bg-transparent ml-2 text-end h-12 md:h-16 w-full">
<svg class="w-4 h-4 md:w-6 md:h-6 text-gray-500 ml-2" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7" />
</svg>
<img src="https://upload.wikimedia.org/wikipedia/commons/c/cb/Flag_of_the_United_Arab_Emirates.svg" alt="UAE Flag" class="w-6 h-6 ml-2">
</div>
</div>
<div class="flex flex-col gap-4 md:gap-7 w-full items-center">
<button type="submit" class="flex items-center justify-center gap-3 text-white bg-[#C10D10] font-medium rounded-lg text-xs md:text-sm px-5 py-2.5 text-center border border-[#C10D10] md:w-96 w-full h-12 md:h-16">
<img src="./images/messagenotif.svg" alt="message">
استلام الكود عن طريق رسالة نصية
</button>
<button type="submit" class="flex items-center justify-center gap-3 border border-[#262626] bg-[#262626] text-white font-medium rounded-lg text-xs md:text-sm px-5 py-2.5 text-center md:w-96 w-full h-12 md:h-16">
<img src="./images/Whatsapp.svg" alt="Whatsapp">
استلام الكود على الواتساب
</button>
<button type="submit" class="flex items-center justify-center gap-3 border border-[#E9E9E9] font-medium rounded-lg text-xs md:text-sm px-5 py-2.5 text-center md:w-96 w-full h-12 md:h-16">
لديك حساب ؟<a href="./login.html" class="text-[#C10D10]"> تسجيل الدخول</a>
</button>
<p class="flex justify-center text-[#C10D10] font-medium text-xs md:text-sm">أو</p>
<button type="submit" class="border border-[#E9E9E9] font-medium rounded-lg text-xs md:text-sm px-5 py-2.5 text-center md:w-96 w-full h-12 md:h-16">متابعة كزائر</button>
</div>
</div>
<!-- End Section -->
<!-- Start Footer -->
<div id="footer"></div>
<!-- End Footer -->
</body>
</html>