2020-06-24 07:25:59 +00:00
|
|
|
@extends("app.layout.base")
|
2020-06-11 12:52:15 +00:00
|
|
|
|
|
|
|
@section("title")
|
|
|
|
Register
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section("content")
|
2020-11-26 09:19:12 +00:00
|
|
|
<main class="bg-sde-blue h-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>
|
|
|
|
<form action="" method="post" onsubmit="return validateRegisterForm(this)" >
|
2020-06-15 06:56:21 +00:00
|
|
|
<input class="appinput" type="email" name="email" placeholder="Email">
|
|
|
|
<input class="appinput" type="password" name="password" placeholder="Password">
|
|
|
|
<input class="appinput" type="password" name="confirmpassword" placeholder="Confirm password">
|
2020-06-11 12:52:15 +00:00
|
|
|
<input class="btn btn-dark" type="submit" value="Sign up">
|
|
|
|
<button class="btn" onclick="window.location='';">Sign in</button>
|
|
|
|
</form>
|
|
|
|
</main>
|
|
|
|
@endsection
|