develop
Last change
on this file since e756bd9 was 1c25bcf, checked in by Berat Kjufliju <kufliju@…>, 3 years ago |
added 2fa, bug fixes, edited blades
|
-
Property mode
set to
100644
|
File size:
1.7 KB
|
Rev | Line | |
---|
[7304c7f] | 1 | @extends('layouts.auth')
|
---|
| 2 |
|
---|
[4b7e2d3] | 3 | @section("title", "SaveSpace | Login")
|
---|
[7304c7f] | 4 |
|
---|
| 5 | @section('content')
|
---|
| 6 |
|
---|
| 7 | <!-- logo -->
|
---|
| 8 | <div id="logo">
|
---|
[1c25bcf] | 9 | <img class="logo" width="150" src="{{ url('assets/media/images/logo.png') }}" alt="image">
|
---|
[7304c7f] | 10 | </div>
|
---|
| 11 | <!-- ./ logo -->
|
---|
| 12 |
|
---|
| 13 | <h5>Sign in</h5>
|
---|
| 14 |
|
---|
| 15 | <!-- form -->
|
---|
| 16 | <form action="{{ route("auth.login") }}" method="post" accept-charset="utf-8">
|
---|
[1c25bcf] | 17 |
|
---|
[7304c7f] | 18 | @csrf
|
---|
| 19 |
|
---|
| 20 | <div class="alert alert-error fade show" role="alert">
|
---|
| 21 | <button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
---|
| 22 | </button>
|
---|
| 23 | </div>
|
---|
| 24 | <div class="form-group">
|
---|
[1c25bcf] | 25 | <input id="username" type="text" tabindex="1" class="form-control" value="{{ old('username') }}" name="username" placeholder="Username" autocomplete="off" required autofocus>
|
---|
[7304c7f] | 26 | <span class="invalid-feedback" role="alert">
|
---|
| 27 | </span>
|
---|
| 28 | </div>
|
---|
| 29 |
|
---|
| 30 | <div class="form-group">
|
---|
[1c25bcf] | 31 | <input id="password" type="password" tabindex="2" class="form-control" name="password" autocomplete="off" placeholder="Password" required>
|
---|
[7304c7f] | 32 | <span class="invalid-feedback" role="alert">
|
---|
| 33 | </span>
|
---|
| 34 | </div>
|
---|
| 35 |
|
---|
| 36 | <div class="form-group d-flex justify-content-between">
|
---|
[e954f3e] | 37 | <label class="custom-control custom-checkbox">
|
---|
| 38 | <input class="custom-control-input" type="checkbox" name="remember" id="remember" {{ old('remember') ? 'checked' : '' }}>
|
---|
| 39 | <span class="custom-control-label">Remember me</span>
|
---|
| 40 | </label>
|
---|
[7304c7f] | 41 | <a href="/auth/forgot">Reset password</a>
|
---|
| 42 | </div>
|
---|
[e954f3e] | 43 |
|
---|
[7304c7f] | 44 | <input type="submit" value="Sign in" class="btn btn-primary btn-block">
|
---|
| 45 | <hr>
|
---|
| 46 | </form>
|
---|
| 47 |
|
---|
| 48 | @endsection
|
---|
Note:
See
TracBrowser
for help on using the repository browser.