File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 33
33
34
34
<!-- Email -->
35
35
<div class="form-floating mb-3">
36
- <input type="email" class="form-control" id="floatingEmailInput" name="email" inputmode="email" autocomplete="email" placeholder="<?= lang ('Auth.email ' ) ?> " value="<?= old ('email ' ) ?> " required / >
36
+ <input type="email" class="form-control" id="floatingEmailInput" name="email" inputmode="email" autocomplete="email" placeholder="<?= lang ('Auth.email ' ) ?> " value="<?= old ('email ' ) ?> " required>
37
37
<label for="floatingEmailInput"><?= lang ('Auth.email ' ) ?> </label>
38
38
</div>
39
39
40
40
<!-- Password -->
41
41
<div class="form-floating mb-3">
42
- <input type="password" class="form-control" id="floatingPasswordInput" name="password" inputmode="text" autocomplete="current-password" placeholder="<?= lang ('Auth.password ' ) ?> " required / >
42
+ <input type="password" class="form-control" id="floatingPasswordInput" name="password" inputmode="text" autocomplete="current-password" placeholder="<?= lang ('Auth.password ' ) ?> " required>
43
43
<label for="floatingPasswordInput"><?= lang ('Auth.password ' ) ?> </label>
44
44
</div>
45
45
Original file line number Diff line number Diff line change 30
30
<!-- Email -->
31
31
<div class="form-floating mb-2">
32
32
<input type="email" class="form-control" id="floatingEmailInput" name="email" autocomplete="email" placeholder="<?= lang ('Auth.email ' ) ?> "
33
- value="<?= old ('email ' , auth ()->user ()->email ?? null ) ?> " required / >
33
+ value="<?= old ('email ' , auth ()->user ()->email ?? null ) ?> " required>
34
34
<label for="floatingEmailInput"><?= lang ('Auth.email ' ) ?> </label>
35
35
</div>
36
36
Original file line number Diff line number Diff line change 29
29
30
30
<!-- Email -->
31
31
<div class="form-floating mb-2">
32
- <input type="email" class="form-control" id="floatingEmailInput" name="email" inputmode="email" autocomplete="email" placeholder="<?= lang ('Auth.email ' ) ?> " value="<?= old ('email ' ) ?> " required / >
32
+ <input type="email" class="form-control" id="floatingEmailInput" name="email" inputmode="email" autocomplete="email" placeholder="<?= lang ('Auth.email ' ) ?> " value="<?= old ('email ' ) ?> " required>
33
33
<label for="floatingEmailInput"><?= lang ('Auth.email ' ) ?> </label>
34
34
</div>
35
35
36
36
<!-- Username -->
37
37
<div class="form-floating mb-4">
38
- <input type="text" class="form-control" id="floatingUsernameInput" name="username" inputmode="text" autocomplete="username" placeholder="<?= lang ('Auth.username ' ) ?> " value="<?= old ('username ' ) ?> " required / >
38
+ <input type="text" class="form-control" id="floatingUsernameInput" name="username" inputmode="text" autocomplete="username" placeholder="<?= lang ('Auth.username ' ) ?> " value="<?= old ('username ' ) ?> " required>
39
39
<label for="floatingUsernameInput"><?= lang ('Auth.username ' ) ?> </label>
40
40
</div>
41
41
42
42
<!-- Password -->
43
43
<div class="form-floating mb-2">
44
- <input type="password" class="form-control" id="floatingPasswordInput" name="password" inputmode="text" autocomplete="new-password" placeholder="<?= lang ('Auth.password ' ) ?> " required / >
44
+ <input type="password" class="form-control" id="floatingPasswordInput" name="password" inputmode="text" autocomplete="new-password" placeholder="<?= lang ('Auth.password ' ) ?> " required>
45
45
<label for="floatingPasswordInput"><?= lang ('Auth.password ' ) ?> </label>
46
46
</div>
47
47
48
48
<!-- Password (Again) -->
49
49
<div class="form-floating mb-5">
50
- <input type="password" class="form-control" id="floatingPasswordConfirmInput" name="password_confirm" inputmode="text" autocomplete="new-password" placeholder="<?= lang ('Auth.passwordConfirm ' ) ?> " required / >
50
+ <input type="password" class="form-control" id="floatingPasswordConfirmInput" name="password_confirm" inputmode="text" autocomplete="new-password" placeholder="<?= lang ('Auth.passwordConfirm ' ) ?> " required>
51
51
<label for="floatingPasswordConfirmInput"><?= lang ('Auth.passwordConfirm ' ) ?> </label>
52
52
</div>
53
53
You can’t perform that action at this time.
0 commit comments