Enable a home page to test SQRL

This commit is contained in:
Deon George
2022-10-01 00:22:19 +10:00
parent d8132baf72
commit f0ada9192e
45 changed files with 31365 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
<footer class="footer">
<div class="footer-bottom text-center py-5">
<small class="copyright">Designed by <a class="theme-link" href="#" target="_blank">Leenooks</a> for developers</small>
</div>
</footer>

View File

@@ -0,0 +1,14 @@
<header class="header">
<div class="branding">
<div class="container-fluid position-relative py-3">
<div class="logo-wrapper">
<div class="site-logo">
<a class="navbar-brand" href="/">
<img class="logo-icon" src="site-logo.svg" alt="logo">
</a>
<span class="logo-text">SQRL</span>
</div>
</div>
</div>
</div>
</header>

View File

@@ -0,0 +1,22 @@
<head>
<title>{{ config('app.name') }} - @yield('htmlheader_title','Your title here')</title>
<!-- Meta -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="Leenooks">
<link rel="shortcut icon" href="site-logo.svg">
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css?family=Quicksand:700|Roboto:400,400i,700&display=swap" rel="stylesheet">
<!-- FontAwesome JS-->
<script defer src="assets/fontawesome/js/all.min.js"></script>
<!-- Theme CSS -->
<link id="theme-style" rel="stylesheet" href="assets/css/theme.css">
<link id="custom-style" rel="stylesheet" href="custom.css">
</head>

View File

@@ -0,0 +1,2 @@
<!-- Javascript -->
<script src="assets/js/main.js"></script>