Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Jun 22, 2022. It is now read-only.

Commit 11b1402

Browse files
feat: added coreui templates
1 parent f4c84df commit 11b1402

File tree

13 files changed

+575
-0
lines changed

13 files changed

+575
-0
lines changed

‎coreui-stubs/auth/login.blade.php

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
7+
8+
<title>Login | {{ config('app.name') }}</title>
9+
<meta name="description" content="CoreUI Template - InfyOm Laravel Generator">
10+
<meta name="keyword" content="CoreUI,Bootstrap,Admin,Template,InfyOm,Open,Source,jQuery,CSS,HTML,RWD,Dashboard">
11+
12+
<!-- CoreUI CSS -->
13+
<link rel="stylesheet" href="{{ mix('css/app.css') }}" crossorigin="anonymous">
14+
15+
<!-- Font Awesome -->
16+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
17+
integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog=="
18+
crossorigin="anonymous"/>
19+
20+
</head>
21+
22+
<body class="c-app flex-row align-items-center">
23+
<div class="container">
24+
<div class="row justify-content-center">
25+
<div class="col-md-8">
26+
<div class="card-group">
27+
<div class="card p-4">
28+
<div class="card-body">
29+
<form method="post" action="{{ url('/login') }}">
30+
@csrf
31+
<h1>Login</h1>
32+
<p class="text-muted">Sign In to your account</p>
33+
<div class="input-group mb-3">
34+
<div class="input-group-prepend">
35+
<span class="input-group-text">
36+
<i class="cil-user"></i>
37+
</span>
38+
</div>
39+
<input type="email" class="form-control @error('email') is-invalid @enderror"
40+
name="email" value="{{ old('email') }}"
41+
placeholder="Email">
42+
@error('email')
43+
<div class="invalid-feedback">{{ $message }}</div>
44+
@enderror
45+
</div>
46+
<div class="input-group mb-4">
47+
<div class="input-group-prepend">
48+
<span class="input-group-text">
49+
<i class="cil-lock-locked"></i>
50+
</span>
51+
</div>
52+
<input type="password"
53+
class="form-control @error('password') is-invalid @enderror"
54+
placeholder="Password" name="password">
55+
@error('password')
56+
<div class="invalid-feedback">{{ $message }}</div>
57+
@enderror
58+
</div>
59+
<div class="row">
60+
<div class="col-4">
61+
<button class="btn btn-primary px-4" type="submit">Login</button>
62+
</div>
63+
<div class="col-8 text-right">
64+
<a class="btn btn-link px-0" href="{{ route('password.request') }}">
65+
Forgot password?
66+
</a>
67+
</div>
68+
</div>
69+
</form>
70+
</div>
71+
</div>
72+
<div class="card text-white bg-primary py-5 d-md-down-none" style="width:44%">
73+
<div class="card-body text-center">
74+
<div>
75+
<h2>Sign up</h2>
76+
<p>Sign in to start your session</p>
77+
<a class="btn btn-lg btn-outline-light mt-3" href="{{ route('register') }}">Register Now!</a>
78+
</div>
79+
</div>
80+
</div>
81+
</div>
82+
</div>
83+
</div>
84+
</div>
85+
86+
<!-- CoreUI and necessary plugins-->
87+
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"
88+
integrity="sha512-bLT0Qm9VnAYZDflyKcBaQ2gg0hSYNQrJ8RilYldYQ1FxQYoCLtUjuuRuZo+fjqhx/qtq/1itJ0C2ejDxltZVFg=="
89+
crossorigin="anonymous"></script>
90+
91+
<script src="https://unpkg.com/@coreui/coreui/dist/js/coreui.bundle.min.js"></script>
92+
93+
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.perfect-scrollbar/1.4.0/perfect-scrollbar.js"></script>
94+
</body>
95+
</html>
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
@extends('layouts.app')
2+
3+
@section('content')
4+
<div class="container">
5+
<div class="row justify-content-center">
6+
<div class="col-md-8">
7+
<div class="card">
8+
<div class="card-header">{{ __('Confirm Password') }}</div>
9+
10+
<div class="card-body">
11+
{{ __('Please confirm your password before continuing.') }}
12+
13+
<form method="POST" action="{{ route('password.confirm') }}">
14+
@csrf
15+
16+
<div class="form-group row">
17+
<label for="password"
18+
class="col-md-4 col-form-label text-md-right">
19+
{{ __('Password') }}
20+
</label>
21+
22+
<div class="col-md-6">
23+
<input id="password" type="password"
24+
class="form-control @error('password') is-invalid @enderror" name="password"
25+
required autocomplete="current-password">
26+
@error('password')
27+
<span class="invalid-feedback" role="alert">
28+
<strong>{{ $message }}</strong>
29+
</span>
30+
@enderror
31+
</div>
32+
</div>
33+
34+
<div class="form-group row mb-0">
35+
<div class="col-md-8 offset-md-4">
36+
<button type="submit" class="btn btn-primary">
37+
{{ __('Confirm Password') }}
38+
</button>
39+
40+
@if (Route::has('password.request'))
41+
<a class="btn btn-link" href="{{ route('password.request') }}">
42+
{{ __('Forgot Your Password?') }}
43+
</a>
44+
@endif
45+
</div>
46+
</div>
47+
</form>
48+
</div>
49+
</div>
50+
</div>
51+
</div>
52+
</div>
53+
@endsection
Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
7+
8+
<title>Send Reset Password Link | {{ config('app.name') }}</title>
9+
<meta name="description" content="CoreUI Template - InfyOm Laravel Generator">
10+
<meta name="keyword" content="CoreUI,Bootstrap,Admin,Template,InfyOm,Open,Source,jQuery,CSS,HTML,RWD,Dashboard">
11+
12+
<!-- CoreUI CSS -->
13+
<link rel="stylesheet" href="{{ mix('css/app.css') }}" crossorigin="anonymous">
14+
15+
<!-- Font Awesome -->
16+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
17+
integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog=="
18+
crossorigin="anonymous"/>
19+
</head>
20+
<body class="c-app flex-row align-items-center">
21+
<div class="container">
22+
<div class="row justify-content-center">
23+
<div class="col-md-6">
24+
<div class="card-group">
25+
<div class="card p-4">
26+
<div class="card-body">
27+
@if (session('status'))
28+
<div class="alert alert-success">
29+
{{ session('status') }}
30+
</div>
31+
@endif
32+
<form method="post" action="{{ url('/password/email') }}">
33+
@csrf
34+
<h1>Reset Your Password</h1>
35+
<p class="text-muted">Enter Email to reset password</p>
36+
<div class="input-group mb-3">
37+
<div class="input-group-prepend">
38+
<span class="input-group-text">
39+
<i class="cil-envelope-open"></i>
40+
</span>
41+
</div>
42+
<input type="email"
43+
class="form-control @error('email') is-invalid @enderror" name="email"
44+
value="{{ old('email') }}" placeholder="Email">
45+
@error('email')
46+
<div class="invalid-feedback">{{ $message }}</div>
47+
@enderror
48+
</div>
49+
50+
<div class="row">
51+
<div class="col-12">
52+
<button class="btn btn-block btn-primary" type="submit">
53+
<i class="fa fa-btn fa-envelope"></i> Send Password Reset Link
54+
</button>
55+
</div>
56+
</div>
57+
</form>
58+
</div>
59+
</div>
60+
</div>
61+
</div>
62+
</div>
63+
</div>
64+
65+
<!-- CoreUI and necessary plugins-->
66+
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"
67+
integrity="sha512-bLT0Qm9VnAYZDflyKcBaQ2gg0hSYNQrJ8RilYldYQ1FxQYoCLtUjuuRuZo+fjqhx/qtq/1itJ0C2ejDxltZVFg=="
68+
crossorigin="anonymous"></script>
69+
70+
<script src="https://unpkg.com/@coreui/coreui/dist/js/coreui.bundle.min.js"></script>
71+
72+
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.perfect-scrollbar/1.4.0/perfect-scrollbar.js"></script>
73+
</body>
74+
</html>
Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
7+
8+
<title>Reset password | {{ config('app.name') }}</title>
9+
<meta name="description" content="CoreUI Template - InfyOm Laravel Generator">
10+
<meta name="keyword" content="CoreUI,Bootstrap,Admin,Template,InfyOm,Open,Source,jQuery,CSS,HTML,RWD,Dashboard">
11+
12+
<!-- CoreUI CSS -->
13+
<link rel="stylesheet" href="{{ mix('css/app.css') }}" crossorigin="anonymous">
14+
15+
<!-- Font Awesome -->
16+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
17+
integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog=="
18+
crossorigin="anonymous"/>
19+
</head>
20+
<body class="c-app flex-row align-items-center">
21+
<div class="container">
22+
<div class="row justify-content-center">
23+
<div class="col-md-6">
24+
<div class="card mx-4">
25+
<div class="card-body p-4">
26+
<form method="post" action="{{ url('/password/reset') }}">
27+
@csrf
28+
<h1>Reset Password</h1>
29+
<p class="text-muted">Enter email and new password</p>
30+
<div class="input-group mb-3">
31+
<div class="input-group-prepend">
32+
<span class="input-group-text">
33+
<i class="cil-envelope-open"></i>
34+
</span>
35+
</div>
36+
<input type="email" class="form-control @error('email') is-invalid @enderror" name="email"
37+
value="{{ $email ?? old('email') }}" placeholder="Email">
38+
@error('email')
39+
<div class="invalid-feedback">{{ $message }}</div>
40+
@enderror
41+
</div>
42+
<div class="input-group mb-3">
43+
<div class="input-group-prepend">
44+
<span class="input-group-text">
45+
<i class="cil-lock-locked"></i>
46+
</span>
47+
</div>
48+
<input type="password" class="form-control @error('password') is-invalid @enderror"
49+
name="password" placeholder="Password">
50+
@error('password')
51+
<div class="invalid-feedback">{{ $message }}</div>
52+
@enderror
53+
</div>
54+
<div class="input-group mb-4">
55+
<div class="input-group-prepend">
56+
<span class="input-group-text">
57+
<i class="cil-lock-locked"></i>
58+
</span>
59+
</div>
60+
<input type="password" name="password_confirmation" class="form-control"
61+
placeholder="Confirm password">
62+
</div>
63+
<button type="submit" class="btn btn-block btn-primary btn-block btn-flat">
64+
<i class="fa fa-btn fa-refresh"></i> Reset
65+
</button>
66+
</form>
67+
</div>
68+
</div>
69+
</div>
70+
</div>
71+
</div>
72+
73+
<!-- CoreUI and necessary plugins-->
74+
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"
75+
integrity="sha512-bLT0Qm9VnAYZDflyKcBaQ2gg0hSYNQrJ8RilYldYQ1FxQYoCLtUjuuRuZo+fjqhx/qtq/1itJ0C2ejDxltZVFg=="
76+
crossorigin="anonymous"></script>
77+
78+
<script src="https://unpkg.com/@coreui/coreui/dist/js/coreui.bundle.min.js"></script>
79+
80+
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.perfect-scrollbar/1.4.0/perfect-scrollbar.js"></script>
81+
</body>
82+
</html>

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /