Skip to content

Commit

Permalink
Remove default login username pass
Browse files Browse the repository at this point in the history
  • Loading branch information
AchillesKal committed Apr 7, 2024
1 parent 5aab2d4 commit ef8a3b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/security/login.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand Down

0 comments on commit ef8a3b4

Please sign in to comment.