1
- <form method = " POST " action = " / {{ config ( ' backend.backend.base_url ' ) } } /password/reset " >
2
- {!! csrf_field () ! !}
3
- < input type = " hidden " name = " token " value = " {{ $token } } " >
1
+ <!DOCTYPE html >
2
+ < html lang = " en " data-ng-app = " cb " >
3
+ < head >
4
4
5
- <div >
6
- <input type =" email" name =" email" value =" {{ old (' email' ) } }" >
7
- </div >
5
+ <meta charset =" utf-8" >
6
+ <meta http-equiv =" X-UA-Compatible" content =" IE=edge" >
7
+ <meta name =" viewport" content =" width=device-width, initial-scale=1" >
8
+ <title >{{ Config:: get (' backend.backend.backend_title' ) } } </title >
8
9
9
- <div >
10
- <input type =" password" name =" password" >
11
- </div >
10
+ @include (' backend::includes.styles' )
12
11
13
- <div >
14
- <input type =" password" name =" password_confirmation" >
15
- </div >
12
+ <style >
13
+ .lb-login-title {
14
+ font-family : dancing_script, " arial narrow" , " Helvetica Neue" , Helvetica , Arial , " Lucida Grande" , Verdana , " Bitstream Vera Sans" , sans-serif ;
15
+ margin-top : 50px ;
16
+ }
17
+ .lb-login-form {
18
+ max-width : 400px ;
19
+ margin : 60px auto 20px auto ;
20
+ padding : 20px ;
21
+ border : 1px solid #eaeaea ;
22
+ border-radius : 5px ;
23
+ }
24
+ </style >
25
+
26
+ <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
27
+ <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
28
+ <!-- [if lt IE 9]>
29
+ <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
30
+ <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
31
+ <![endif]-->
16
32
17
- <div >
18
- <button type =" submit" >
19
- Reset Password
20
- </button >
33
+ </head >
34
+ <body >
35
+ <div class =" container" >
36
+ <h1 class =" text-center lb-login-title" >{{ Config:: get (' backend.backend.backend_title' ) } } </h1 >
37
+ <div class =" lb-login-form" >
38
+ @if ($errors -> first () )
39
+ <div class =" alert alert-danger" >
40
+ {{ $errors -> first ()} }
41
+ </div >
42
+ @endif
43
+ <form method =" POST" action =" /{{ config (' backend.backend.base_url' )} } /password/reset" >
44
+ {!! csrf_field () ! !}
45
+ <input type =" hidden" name =" token" value =" {{ $token } }" >
46
+ <div class =" form-group" >
47
+ Email
48
+ <input class =" form-control" type =" email" name =" email" value =" {{ old (' email' ) } }" >
49
+ </div >
50
+ <div class =" form-group" >
51
+ New Password
52
+ <input class =" form-control" type =" password" name =" password" >
53
+ </div >
54
+ <div class =" form-group" >
55
+ Confirm New Password
56
+ <input class =" form-control" type =" password" name =" password_confirmation" >
57
+ </div >
58
+ <div class =" form-group" >
59
+ <button class =" btn btn-default" type =" submit" >
60
+ Reset Password
61
+ </button >
62
+ </div >
63
+ </form >
21
64
</div >
22
- </form >
65
+ </div >
66
+ </body >
67
+ </html >
0 commit comments