Replace Email Input with Username input
Browse files- SignIn.html +3 -3
SignIn.html
CHANGED
|
@@ -41,10 +41,10 @@
|
|
| 41 |
<h2 class="text-2xl font-bold text-center mb-6 text-gray-800">Welcome Back!</h2>
|
| 42 |
<form>
|
| 43 |
<div class="mb-4">
|
| 44 |
-
<label for="
|
| 45 |
-
<input type="
|
| 46 |
</div>
|
| 47 |
-
|
| 48 |
<label for="password" class="block text-gray-700 text-sm font-medium mb-2">Password</label>
|
| 49 |
<input type="password" id="password" class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
|
| 50 |
</div>
|
|
|
|
| 41 |
<h2 class="text-2xl font-bold text-center mb-6 text-gray-800">Welcome Back!</h2>
|
| 42 |
<form>
|
| 43 |
<div class="mb-4">
|
| 44 |
+
<label for="username" class="block text-gray-700 text-sm font-medium mb-2">Username</label>
|
| 45 |
+
<input type="text" id="username" class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
|
| 46 |
</div>
|
| 47 |
+
<div class="mb-6">
|
| 48 |
<label for="password" class="block text-gray-700 text-sm font-medium mb-2">Password</label>
|
| 49 |
<input type="password" id="password" class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
|
| 50 |
</div>
|