Got the mobile route to work

This commit is contained in:
Sebastian
2020-06-23 06:42:43 +02:00
parent 070ff2e3c6
commit 4ddc765082
6 changed files with 41 additions and 1 deletions
@@ -0,0 +1,4 @@
@extends('webapp.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