Last change
on this file since ec7b69d was aab55f4, checked in by Berat Kjufliju <kufliju@…>, 3 years ago |
bug fixes
|
-
Property mode
set to
100644
|
File size:
1.5 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">
|
---|
[e954f3e] | 33 | <label class="custom-control custom-checkbox">
|
---|
| 34 | <input class="custom-control-input" type="checkbox" name="remember" id="remember" {{ old('remember') ? 'checked' : '' }}>
|
---|
| 35 | <span class="custom-control-label">Remember me</span>
|
---|
| 36 | </label>
|
---|
[aab55f4] | 37 | <a class="pr-2" href="/auth/forgot">Reset password</a>
|
---|
[7304c7f] | 38 | </div>
|
---|
[e954f3e] | 39 |
|
---|
[7304c7f] | 40 | <input type="submit" value="Sign in" class="btn btn-primary btn-block">
|
---|
| 41 | </form>
|
---|
[aab55f4] | 42 | <br/>
|
---|
| 43 | <br/>
|
---|
[7304c7f] | 44 |
|
---|
| 45 | @endsection
|
---|
Note:
See
TracBrowser
for help on using the repository browser.