generated from dunglas/symfony-docker
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5aab2d4
commit ef8a3b4
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,12 +15,12 @@ | |
<div class="flex flex-col gap-3 mb-4"> | ||
<div class="relative"> | ||
<label for="username" class="text-xs font-medium">Email</label> | ||
<input type="email" value="[email protected]" name="_username" id="username" class="w-full bg-gray-200/80 text-gray-900 mt-2 p-4 rounded-xl focus:outline-none focus:shadow-outline" autocomplete required autofocus> | ||
<input type="email" name="_username" id="username" class="w-full bg-gray-200/80 text-gray-900 mt-2 p-4 rounded-xl focus:outline-none focus:shadow-outline" autocomplete required autofocus> | ||
</div> | ||
|
||
<div class="relative"> | ||
<label for="password" class="text-xs font-medium">Password</label> | ||
<input type="password" value="1234" name="_password" id="password" class="w-full bg-gray-200/80 text-gray-900 mt-2 p-4 rounded-xl focus:outline-none focus:shadow-outline" autocomplete required> | ||
<input type="password" name="_password" id="password" class="w-full bg-gray-200/80 text-gray-900 mt-2 p-4 rounded-xl focus:outline-none focus:shadow-outline" autocomplete required> | ||
</div> | ||
</div> | ||
|
||
|