2020-06-30 08:19:01 +00:00
|
|
|
@extends("user.layout.base")
|
2020-06-16 07:04:25 +00:00
|
|
|
|
|
|
|
@section("title")
|
|
|
|
Login
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section("content")
|
2020-11-26 09:19:12 +00:00
|
|
|
<main class="bg-sde-blue h-100">
|
2020-06-16 07:04:25 +00:00
|
|
|
<div class="brand">
|
|
|
|
<img src="{{URL::asset('/images/logos/Logo-hvid.svg')}}" alt="Syddansk Erhvervsskole">
|
|
|
|
</div>
|
2020-06-30 08:04:06 +00:00
|
|
|
<form action="{{ route("users.login") }}" method="post">
|
2020-06-22 08:08:18 +00:00
|
|
|
@csrf
|
2020-06-16 07:04:25 +00:00
|
|
|
<input class="appinput" type="email" name="email" placeholder="Email" required>
|
|
|
|
<input class="appinput" type="password" name="password" placeholder="Password" required>
|
|
|
|
<label class="toggle">
|
|
|
|
<input class="toggle__input" type="checkbox" name="rememberpassword">
|
|
|
|
<span class="toggle__label">
|
2020-08-25 13:08:54 +00:00
|
|
|
<span class="toggle__text text-white">Remember me</span>
|
2020-06-16 07:04:25 +00:00
|
|
|
</span>
|
|
|
|
</label>
|
2020-08-07 06:35:23 +00:00
|
|
|
{!! session()->get('success#passwordchange') !!}
|
|
|
|
{!! session()->get('error#wrongcredentials') !!}
|
|
|
|
{!! session()->get('success#loggedout') !!}
|
2020-06-16 07:04:25 +00:00
|
|
|
<input class="btn btn-dark" type="submit" value="Sign in">
|
|
|
|
</form>
|
2020-06-30 08:19:01 +00:00
|
|
|
<a class="text-white text-center" href="{{ route('users.show-forgot') }}">Forgot password?</a>
|
2020-06-16 07:04:25 +00:00
|
|
|
</main>
|
|
|
|
@endsection
|