-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
68 lines (62 loc) · 3.49 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="fa">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>خوش امدید </title>
<link rel="icon" type="image/x-icon" href="asset/images/icons8-developer-16.png">
<script src="https://cdn.tailwindcss.com"></script>
<style>
body{
overflow-x: hidden;
}
</style>
</head>
<body>
<!-- first part of project😉 -->
<div class="bg-[#F9FAFB] h-screen w-screen flex items-center bg">
<div class="h-max mx-auto flex flex-col items-center">
<img class="h-[40px] w-[47px] mb-5" src="website__main.PNG" alt="">
<h1 class="text-xl font-bold text-center pb-10">ورود</h1>
<div class="bg-white shadow-xl p-10 flex flex-col gap-4 text-sm">
<div>
<label class="text-gray-600 font-bold inline-block pb-2" for="email">ایمیل</label>
<input class="border border-gray-400 focus:outline-slate-400 rounded-md w-full shadow-sm px-5 py-2" type="email" name="email" placeholder="[email protected]">
</div>
<div>
<label class="text-gray-600 font-bold inline-block pb-2" for="email">نام کاربری</label>
<input class="border border-gray-400 focus:outline-slate-400 rounded-md w-full shadow-sm px-5 py-2" type="text" name="text" placeholder="نام شما">
</div>
<div>
<label class="text-gray-600 font-bold inline-block pb-2" for="email">رمز</label>
<input class="border border-gray-400 focus:outline-slate-400 rounded-md w-full shadow-sm px-5 py-2" type="password" name="password" placeholder="******">
</div>
<div>
<label class="text-gray-600 font-bold inline-block pb-2" for="password">رمز</label>
<input class="border border-gray-400 focus:outline-slate-400 rounded-md w-full shadow-sm px-5 py-2" type="password" name="password" placeholder="******">
</div>
<div class="flex">
<div class="w-1/2">
<!-- <input type="checkbox" name="remeberMe">
<label for="remeberMe">Remeber me</label> -->
</div>
<!-- <div class="w-1/2">
<a class="font-bold text-blue-600" href="">رمز را فراموش کرده ا</a>
</div> -->
</div>
<div>
<input class="bg-[#4F46E5] w-full py-2 rounded-md text-white font-bold cursor-pointer hover:bg-[#181196]" type="submit" value="ورود" >
</div>
<div>
<p class="text-center">ادامه بده با</p>
</div>
<div class="flex gap-4">
<button class="bg-[#1D9BF0] w-1/2 py-1 rounded-md text-white font-bold cursor-pointer hover:bg-[#181196]">توییتر</button>
<button class="bg-[#24292F] w-1/2 py-1 rounded-md text-white font-bold cursor-pointer hover:bg-[#181196]">گیت هاب</button>
</div>
</div>
<p class="text-sm text-gray-500 mt-10"><a href="index.html" class="text-[#4F46E5] font-bold">برگشت به صفحه اصلی</a></p>
</div>
</div>
</body>
</html>