-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from ocornel/develop
Login page styling
- Loading branch information
Showing
11 changed files
with
97 additions
and
270 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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,73 +1,70 @@ | ||
@extends('layouts.app') | ||
|
||
@section('content') | ||
<div class="container"> | ||
<div class="row justify-content-center"> | ||
<div class="col-md-12"> | ||
<div class="card"> | ||
<div class="card-header">{{ __('Login') }}</div> | ||
|
||
<div class="card-body"> | ||
<form method="POST" action="{{ route('login') }}"> | ||
@csrf | ||
|
||
<div class="form-group row"> | ||
<label for="email" class="col-md-4 col-form-label text-md-right">{{ __('E-Mail Address') }}</label> | ||
|
||
<div class="col-md-6"> | ||
<input id="email" type="email" class="form-control @error('email') is-invalid @enderror" name="email" value="{{ old('email') }}" required autocomplete="email" autofocus> | ||
|
||
@error('email') | ||
<span class="invalid-feedback" role="alert"> | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<title>{{ config('app.name', 'Ponacare') }} @yield('page_title')</title> | ||
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no"> | ||
<meta name="description" content="{{ config('app.name', 'Ponacare') }} | By consult mCornel"> | ||
<meta name="theme-color" content="#ffffff"> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400italic,500,700"> | ||
<link href="{{ asset('css/vendor.min.css') }}" rel="stylesheet"> | ||
<link href="{{ asset('css/elephant.min.css') }}" rel="stylesheet"> | ||
<link href="{{ asset('css/login-3.min.css') }}" rel="stylesheet"> | ||
<style> | ||
body { | ||
color: #384243; | ||
background-color: #2e96b9; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="login"> | ||
<div class="login-body"> | ||
<a class="login-brand" href="{{ route('landing') }}"> | ||
<img class="img-responsive" src="{{ asset('img/logo_blue_white.png') }}" alt="Ponacare"> | ||
</a> | ||
<h3 class="login-heading">{{ __('Login') }}</h3> | ||
<div class="login-form"> | ||
<form data-toggle="md-validator" method="POST" action="{{ route('login') }}"> | ||
@csrf | ||
<div class="md-form-group md-label-floating"> | ||
<input id="email" type="email" class="md-form-control @error('email') is-invalid @enderror" name="email" value="{{ old('email') }}" required autocomplete="email" autofocus> | ||
<label class="md-control-label">{{ __('E-Mail Address') }} | ||
@error('email') | ||
<span class="invalid-feedback" role="alert"> | ||
<strong>{{ $message }}</strong> | ||
</span> | ||
@enderror | ||
</div> | ||
</div> | ||
|
||
<div class="form-group row"> | ||
<label for="password" class="col-md-4 col-form-label text-md-right">{{ __('Password') }}</label> | ||
|
||
<div class="col-md-6"> | ||
<input id="password" type="password" class="form-control @error('password') is-invalid @enderror" name="password" required autocomplete="current-password"> | ||
|
||
@error('password') | ||
<span class="invalid-feedback" role="alert"> | ||
@enderror | ||
</label> | ||
</div> | ||
<div class="md-form-group md-label-floating"> | ||
<input id="password" type="password" class="md-form-control @error('password') is-invalid @enderror" name="password" required autocomplete="current-password" data-msg-required="Please enter your password." > | ||
<label class="md-control-label">Password @error('password') | ||
<span class="invalid-feedback" role="alert"> | ||
<strong>{{ $message }}</strong> | ||
</span> | ||
@enderror | ||
</div> | ||
</div> | ||
|
||
<div class="form-group row"> | ||
<div class="col-md-6 offset-md-4"> | ||
<div class="form-check"> | ||
<input class="form-check-input" type="checkbox" name="remember" id="remember" {{ old('remember') ? 'checked' : '' }}> | ||
|
||
<label class="form-check-label" for="remember"> | ||
{{ __('Remember Me') }} | ||
</label> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="form-group row mb-0"> | ||
<div class="col-md-8 offset-md-4"> | ||
<button type="submit" class="btn btn-primary"> | ||
{{ __('Login') }} | ||
</button> | ||
|
||
@if (Route::has('password.request')) | ||
<a class="btn btn-link" href="{{ route('password.request') }}"> | ||
{{ __('Forgot Your Password?') }} | ||
</a> | ||
@endif | ||
</div> | ||
</div> | ||
</form> | ||
@enderror | ||
</label> | ||
</div> | ||
<div class="md-form-group md-custom-controls"> | ||
<label class="custom-control custom-control-primary custom-checkbox"> | ||
<input class="custom-control-input" type="checkbox" name="remember" id="remember" {{ old('remember') ? 'checked' : '' }}> | ||
<span class="custom-control-indicator"></span> | ||
<span class="custom-control-label">{{ __('Remember Me') }}</span> | ||
</label> | ||
<br> | ||
<span aria-hidden="true"> * Forgot password? <a href="mailto:{{env('ADMIN_EMAIL', '[email protected]')}}?subject=Forgot Password for {{env('APP_NAME', 'Ponacare')}}">Seek Admin assistance.</a></span> | ||
</div> | ||
</div> | ||
<button class="btn btn-primary btn-block" type="submit">Sign in</button> | ||
</form> | ||
</div> | ||
</div> | ||
<div class="login-footer"> | ||
Don't have an account? <a style="color: #444444; text-decoration: underline" href="mailto:{{env('ADMIN_EMAIL', '[email protected]')}}?subject=Need Account on {{env('APP_NAME', 'Ponacare')}}">Seek assistance from a system admin.</a> | ||
</div> | ||
</div> | ||
@endsection | ||
<script src="{{ asset('js/vendor.min.js') }}"></script> | ||
<script src="{{ asset('js/elephant.min.js') }}"></script> | ||
</body> | ||
</html> |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -61,7 +61,7 @@ | |
</button> | ||
<ul class="dropdown-menu dropdown-menu-right"> | ||
<li> | ||
<a href="mailto:[email protected]?subject={{ $auth_user->name }} Need Help for {{env('APP_NAME', 'Ponacare')}}"> | ||
<a href="mailto:{{env('ADMIN_EMAIL', '[email protected]')}}?subject={{ $auth_user->name }} Need Help for {{env('APP_NAME', 'Ponacare')}}"> | ||
<h5 class="navbar-upgrade-heading"> | ||
Need Help? | ||
<small class="navbar-upgrade-notification">Contact the system developer</small> | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.