-
Notifications
You must be signed in to change notification settings - Fork 359
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aa9f189
commit c06168b
Showing
10 changed files
with
71 additions
and
71 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"workbench.colorCustomizations": { | ||
"activityBar.background": "#4E200A", | ||
"titleBar.activeBackground": "#6D2D0D", | ||
"titleBar.activeForeground": "#FEFAF8" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
@extends('layouts.app', ['class' => 'login-page', 'page' => _('Login Page'), 'contentClass' => 'login-page']) | ||
@extends('layouts.app', ['class' => 'login-page', 'page' => __('Login Page'), 'contentClass' => 'login-page']) | ||
|
||
@section('content') | ||
<div class="col-md-10 text-center ml-auto mr-auto"> | ||
|
@@ -11,7 +11,7 @@ | |
<div class="card card-login card-white"> | ||
<div class="card-header"> | ||
<img src="{{ asset('black') }}/img/card-primary.png" alt=""> | ||
<h1 class="card-title">{{ _('Log in') }}</h1> | ||
<h1 class="card-title">{{ __('Log in') }}</h1> | ||
</div> | ||
<div class="card-body"> | ||
<p class="text-dark mb-2">Sign in with <strong>[email protected]</strong> and the password <strong>secret</strong></p> | ||
|
@@ -21,7 +21,7 @@ | |
<i class="tim-icons icon-email-85"></i> | ||
</div> | ||
</div> | ||
<input type="email" name="email" class="form-control{{ $errors->has('email') ? ' is-invalid' : '' }}" placeholder="{{ _('Email') }}"> | ||
<input type="email" name="email" class="form-control{{ $errors->has('email') ? ' is-invalid' : '' }}" placeholder="{{ __('Email') }}"> | ||
@include('alerts.feedback', ['field' => 'email']) | ||
</div> | ||
<div class="input-group{{ $errors->has('password') ? ' has-danger' : '' }}"> | ||
|
@@ -30,20 +30,20 @@ | |
<i class="tim-icons icon-lock-circle"></i> | ||
</div> | ||
</div> | ||
<input type="password" placeholder="{{ _('Password') }}" name="password" class="form-control{{ $errors->has('password') ? ' is-invalid' : '' }}"> | ||
<input type="password" placeholder="{{ __('Password') }}" name="password" class="form-control{{ $errors->has('password') ? ' is-invalid' : '' }}"> | ||
@include('alerts.feedback', ['field' => 'password']) | ||
</div> | ||
</div> | ||
<div class="card-footer"> | ||
<button type="submit" href="" class="btn btn-primary btn-lg btn-block mb-3">{{ _('Get Started') }}</button> | ||
<button type="submit" href="" class="btn btn-primary btn-lg btn-block mb-3">{{ __('Get Started') }}</button> | ||
<div class="pull-left"> | ||
<h6> | ||
<a href="{{ route('register') }}" class="link footer-link">{{ _('Create Account') }}</a> | ||
<a href="{{ route('register') }}" class="link footer-link">{{ __('Create Account') }}</a> | ||
</h6> | ||
</div> | ||
<div class="pull-right"> | ||
<h6> | ||
<a href="{{ route('password.request') }}" class="link footer-link">{{ _('Forgot password?') }}</a> | ||
<a href="{{ route('password.request') }}" class="link footer-link">{{ __('Forgot password?') }}</a> | ||
</h6> | ||
</div> | ||
</div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.