Last change
on this file since 79aa35c was 79aa35c, checked in by beratkjufliju <kufliju@…>, 3 years ago |
edited login blade
|
-
Property mode
set to
100644
|
File size:
1.3 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="form-group">
|
---|
[1c25bcf] | 21 | <input id="username" type="text" tabindex="1" class="form-control" value="{{ old('username') }}" name="username" placeholder="Username" autocomplete="off" required autofocus>
|
---|
[7304c7f] | 22 | <span class="invalid-feedback" role="alert">
|
---|
| 23 | </span>
|
---|
| 24 | </div>
|
---|
| 25 |
|
---|
| 26 | <div class="form-group">
|
---|
[1c25bcf] | 27 | <input id="password" type="password" tabindex="2" class="form-control" name="password" autocomplete="off" placeholder="Password" required>
|
---|
[7304c7f] | 28 | <span class="invalid-feedback" role="alert">
|
---|
| 29 | </span>
|
---|
| 30 | </div>
|
---|
| 31 |
|
---|
| 32 | <div class="form-group d-flex justify-content-between">
|
---|
[79aa35c] | 33 | <label>
|
---|
[e954f3e] | 34 | </label>
|
---|
[aab55f4] | 35 | <a class="pr-2" href="/auth/forgot">Reset password</a>
|
---|
[7304c7f] | 36 | </div>
|
---|
[e954f3e] | 37 |
|
---|
[7304c7f] | 38 | <input type="submit" value="Sign in" class="btn btn-primary btn-block">
|
---|
| 39 | </form>
|
---|
[aab55f4] | 40 | <br/>
|
---|
| 41 | <br/>
|
---|
[7304c7f] | 42 |
|
---|
| 43 | @endsection
|
---|
Note:
See
TracBrowser
for help on using the repository browser.