21 lines
750 B
PHP
21 lines
750 B
PHP
|
@extends("layout.base")
|
||
|
|
||
|
@section("title")
|
||
|
Register
|
||
|
@endsection
|
||
|
|
||
|
@section("content")
|
||
|
<main>
|
||
|
<div class="brand">
|
||
|
<img src="{{ URL::asset('/images/logos/Logo-hvid.svg') }}" alt="Syddansk Erhvervsskole">
|
||
|
</div>
|
||
|
<form action="" method="post" onsubmit="return validateRegisterForm(this)" >
|
||
|
<input type="email" name="email" placeholder="Email">
|
||
|
<input type="password" name="password" placeholder="Password">
|
||
|
<input type="password" name="confirmpassword" placeholder="Confirm password">
|
||
|
<input class="btn btn-dark" type="submit" value="Sign up">
|
||
|
<button class="btn" onclick="window.location='';">Sign in</button>
|
||
|
</form>
|
||
|
</main>
|
||
|
@endsection
|