2020-06-30 08:19:01 +00:00
|
|
|
@extends("user.layout.base")
|
2020-06-11 12:52:15 +00:00
|
|
|
|
|
|
|
@section("title")
|
|
|
|
Login
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section("content")
|
2020-06-15 06:56:21 +00:00
|
|
|
<main style="background-color: #00788a; height: 100%;">
|
2020-06-11 12:52:15 +00:00
|
|
|
<div class="brand">
|
|
|
|
<img src="{{URL::asset('/images/logos/Logo-hvid.svg')}}" alt="Syddansk Erhvervsskole">
|
|
|
|
</div>
|
2020-06-30 08:42:10 +00:00
|
|
|
<form action="{{ route("users.login") }}" method="post">
|
|
|
|
@csrf
|
2020-06-15 06:56:21 +00:00
|
|
|
<input class="appinput" type="email" name="email" placeholder="Email" required>
|
|
|
|
<input class="appinput" type="password" name="password" placeholder="Password" required>
|
2020-06-11 12:52:15 +00:00
|
|
|
<label class="toggle">
|
|
|
|
<input class="toggle__input" type="checkbox" name="rememberpassword">
|
|
|
|
<span class="toggle__label">
|
|
|
|
<span class="toggle__text text-white">Remember password</span>
|
|
|
|
</span>
|
|
|
|
</label>
|
|
|
|
<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-11 12:52:15 +00:00
|
|
|
</main>
|
|
|
|
@endsection
|