Moved files

This commit is contained in:
frederikpyt
2020-06-24 09:25:59 +02:00
parent dd5a9fdbc6
commit 7cb1fe6ed6
10 changed files with 51 additions and 64 deletions
@@ -0,0 +1,4 @@
@extends('app.layout.base')
@section('content')
@endsection
@@ -0,0 +1,26 @@
@extends("app.layout.base")
@section("title")
Login
@endsection
@section("content")
<main style="background-color: #00788a; height: 100%;">
<div class="brand">
<img src="{{URL::asset('/images/logos/Logo-hvid.svg')}}" alt="Syddansk Erhvervsskole">
</div>
<form action="" method="post">
<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">
<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
@@ -0,0 +1,20 @@
@extends("app.layout.base")
@section("title")
Register
@endsection
@section("content")
<main style="background-color: #00788a; height: 100%;">
<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 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">
<input class="btn btn-dark" type="submit" value="Sign up">
<button class="btn" onclick="window.location='';">Sign in</button>
</form>
</main>
@endsection