-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSignUp.html
102 lines (95 loc) · 4.87 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body class="bg-blpt bg-cover">
<div class="flex justify-center pt-2">
<div class="text-white text-[40px]">
Faculty Recruitement Portal
</div>
</div>
<div class="fixed w-screen overflow-y-auto flex min-h-full items-start pt-24 justify-center p-4 object-center">
<div class="flex-col bg-black bg-opacity-60 backdrop-blur-[2px] rounded-lg px-8 pt-5 justify-center w-[650px] h-[450px]">
<label class="block pb-4"><h3 class="text-center text-white font-semibold tracking-wider text-2xl">Create Your Profile</h3></label>
<div class="grid grid-cols-2 grid-rows-3 gap-2 place-items-center mb-3">
<div>
<input type="text" placeholder="First Name " class="border-solid border-2 rounded-md px-3 py-2 w-[250px]">
</div>
<div>
<input type="text" placeholder="Last Name " class="border-solid border-2 rounded-md px-3 py-2 w-[250px]">
</div>
<div>
<input type="text" placeholder="Your Email" class="border-solid border-2 rounded-md px-3 py-2 w-[250px]">
</div>
<div>
<select id="cast" name="cast" class="border-solid border-2 rounded-md px-3 py-2 w-[250px]" required="">
<option value="">Select Category</option>
<option value="UR">UR</option>
<option value="OBC">OBC</option>
<option value="SC">SC</option>
<option value="ST">ST</option>
<option value="PWD">PWD</option>
<option value="EWS">EWS</option>
</select>
</div>
<div>
<input type="text" placeholder="Password" class="border-solid border-2 rounded-md px-3 py-2 w-[250px]">
</div>
<div>
<input type="text" placeholder="Re-enter Password" class="border-solid border-2 rounded-md px-3 py-2 w-[250px]">
</div>
</div>
<div>
<p class="font-bold text-white">Note:</p>
<!-- <br> -->
<ol class="text-white list-decimal pl-4">
<li>
Applicant should kindly check their email for activation link to access the portal.
</li>
<li>
Please check SPAM folder also, in case activation link is not received in INBOX.
</li>
<li>
Applicant applying for more than one position/ department should use different email id for each application.
</li>
</ol>
</div>
<!-- <div class="container w-full">
<div class="block items-center">
<a href="https://youtube.com"><button class="bg-cyan-700 w-[250px] h-[40px] rounded-md hover:bg-cyan-600">Sign In</button></a>
</div>
<br>
<div>
<p class="text-center text-white">Already registered? <span class="underline hover:cursor-pointer"><a href="./index.html">Login</a></span></p>
</div>
</div> -->
<div class="flex flex-col justify-center items-center pt-3">
<div>
<form action="/"><input type="submit" class="bg-cyan-700 w-[250px] h-[40px] rounded-md hover:bg-cyan-600"></form>
</div>
<div>
<p class="text-center text-white font-light">Already registered? <span class="underline hover:cursor-pointer"><a href="./index.html">Login</a></span></p>
</div>
</div>
</div>
</div>
<footer class="absolute bg-white rounded-lg shadow dark:bg-gray-800 bottom-0 inset-x-0 text-white">
<div class="w-full mx-auto max-w-screen-xl p-4 md:flex md:items-center md:justify-between">
<span class="text-sm text-gray-500 sm:text-center dark:text-gray-400">© 2023 <a href="https://github.com/Rahul-Nikhate/Project_CS260" class="hover:underline">Rahul</a> and <a href="https://github.com/HarshKumar3-14159/Project_CS260" class="hover:underline">Harsh</a>. All Rights Reserved.
</span>
<ul class="flex flex-wrap gap-5 items-center mt-3 text-sm font-medium text-gray-500 dark:text-gray-400 sm:mt-0">
<li>
<div>Contact : (+01)234 567 890</div>
</li>
<li>
<div>Email : CS260@project.com</div>
</li>
</ul>
</div>
</footer>
</body>
</html>