Last change
on this file since dbc5976 was aab55f4, checked in by Berat Kjufliju <kufliju@…>, 3 years ago |
bug fixes
|
-
Property mode
set to
100644
|
File size:
1.5 KB
|
Line | |
---|
1 | @extends('layouts.auth')
|
---|
2 |
|
---|
3 | @section("title", "SaveSpace | Login")
|
---|
4 |
|
---|
5 | @section('content')
|
---|
6 |
|
---|
7 | <!-- logo -->
|
---|
8 | <div id="logo">
|
---|
9 | <img class="logo" width="150" src="{{ url('assets/media/images/logo.png') }}" alt="image">
|
---|
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">
|
---|
17 |
|
---|
18 | @csrf
|
---|
19 |
|
---|
20 | <div class="form-group">
|
---|
21 | <input id="username" type="text" tabindex="1" class="form-control" value="{{ old('username') }}" name="username" placeholder="Username" autocomplete="off" required autofocus>
|
---|
22 | <span class="invalid-feedback" role="alert">
|
---|
23 | </span>
|
---|
24 | </div>
|
---|
25 |
|
---|
26 | <div class="form-group">
|
---|
27 | <input id="password" type="password" tabindex="2" class="form-control" name="password" autocomplete="off" placeholder="Password" required>
|
---|
28 | <span class="invalid-feedback" role="alert">
|
---|
29 | </span>
|
---|
30 | </div>
|
---|
31 |
|
---|
32 | <div class="form-group d-flex justify-content-between">
|
---|
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>
|
---|
37 | <a class="pr-2" href="/auth/forgot">Reset password</a>
|
---|
38 | </div>
|
---|
39 |
|
---|
40 | <input type="submit" value="Sign in" class="btn btn-primary btn-block">
|
---|
41 | </form>
|
---|
42 | <br/>
|
---|
43 | <br/>
|
---|
44 |
|
---|
45 | @endsection
|
---|
Note:
See
TracBrowser
for help on using the repository browser.