Skip to content

Commit 0112bb8

Browse files
committed
Remove bootstrap classes
1 parent d0764d8 commit 0112bb8

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

resources/views/security/login.html.twig

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,23 @@
1414
</div>
1515
{% endif %}
1616

17-
<h1 class="h3 mb-3 font-weight-normal">Please sign in</h1>
17+
<h1>Please sign in</h1>
1818
<label for="inputEmail">Email</label>
19-
<input type="email" value="{{ last_username }}" name="email" id="inputEmail" class="form-control" required autofocus>
19+
<input type="email" value="{{ last_username }}" name="email" id="inputEmail" required autofocus>
2020
<label for="inputPassword">Password</label>
21-
<input type="password" name="password" id="inputPassword" class="form-control" required>
21+
<input type="password" name="password" id="inputPassword" required>
2222

2323
<input type="hidden" name="_csrf_token"
2424
value="{{ csrf_token('authenticate') }}"
2525
>
2626

27-
<div class="checkbox mb-3">
27+
<div>
2828
<label>
2929
<input type="checkbox" name="_remember_me"> Remember me
3030
</label>
3131
</div>
3232

33-
<button class="btn btn-lg btn-primary" type="submit">
33+
<button type="submit">
3434
Sign in
3535
</button>
3636
</form>

resources/views/security/register.html.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
{% block body %}
66
{% for flashError in app.flashes('verify_email_error') %}
7-
<div class="alert alert-danger" role="alert">{{ flashError }}</div>
7+
<div role="alert">{{ flashError }}</div>
88
{% endfor %}
99

1010
<h1>Register</h1>
@@ -16,6 +16,6 @@
1616
}) }}
1717
{{ form_row(registrationForm.agreeTerms) }}
1818

19-
<button type="submit" class="btn">Register</button>
19+
<button type="submit">Register</button>
2020
{{ form_end(registrationForm) }}
2121
{% endblock %}

0 commit comments

Comments
 (0)