Last change
on this file was 79aa35c, checked in by beratkjufliju <kufliju@…>, 3 years ago |
edited login blade
|
-
Property mode
set to
100644
|
File size:
1.3 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>
|
---|
34 | </label>
|
---|
35 | <a class="pr-2" href="/auth/forgot">Reset password</a>
|
---|
36 | </div>
|
---|
37 |
|
---|
38 | <input type="submit" value="Sign in" class="btn btn-primary btn-block">
|
---|
39 | </form>
|
---|
40 | <br/>
|
---|
41 | <br/>
|
---|
42 |
|
---|
43 | @endsection
|
---|
Note:
See
TracBrowser
for help on using the repository browser.