Added FontAwesome

This commit is contained in:
2020-06-23 15:32:42 +02:00
parent 4ddc765082
commit 8ac68ef7b9
58 changed files with 36393 additions and 43 deletions
@@ -6,7 +6,8 @@
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link type="text/css" rel="stylesheet" href="{{ mix("/css/webapp.css") }}">
</head>
<body style="background-color: #00788a;">
<body>
@yield("content")
<script src="{{ mix("/js/app.js") }}"></script>
@@ -1,4 +0,0 @@
@extends('webapp.layout.base')
@section('content')
@endsection
@@ -1,26 +0,0 @@
@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
@@ -1,20 +0,0 @@
@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