Added Images, fonts, vagttelefon and menuplan

This commit is contained in:
Frederikmillingpytlick
2020-06-11 14:52:15 +02:00
parent 9c6d8c04cd
commit a341e61bad
32 changed files with 699 additions and 25 deletions
@@ -0,0 +1,26 @@
@extends("layout.base")
@section("title")
Login
@endsection
@section("content")
<main>
<div class="brand">
<img src="{{URL::asset('/images/logos/Logo-hvid.svg')}}" alt="Syddansk Erhvervsskole">
</div>
<form action="" method="post">
<input type="email" name="email" placeholder="Email" required>
<input type="password" name="password" placeholder="Password" required>
<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">
<button class="btn" onclick="window.location = '';">Sign up</button>
</form>
<a class="text-white text-center" href="">Forgot password?</a>
</main>
@endsection