This commit is contained in:
40
Source/ProofOfConcept/Pages/Index.cshtml
Normal file
40
Source/ProofOfConcept/Pages/Index.cshtml
Normal file
@@ -0,0 +1,40 @@
|
||||
@page
|
||||
@model ProofOfConcept.Pages.Index
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
||||
<title>Launching soon!</title>
|
||||
<link rel="icon" type="image/x-icon" href="assets/img/favicon.ico" />
|
||||
<link href="assets/css/style.min.css" rel="stylesheet" />
|
||||
|
||||
<style>
|
||||
:root {
|
||||
--masthead-bg-color: rgba(0, 0, 0, 0.8) ;
|
||||
--body-bg-color: #455A64 ;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<canvas id="canvas"></canvas>
|
||||
|
||||
<!-- Background Video-->
|
||||
<video class="bg-video" playsinline="playsinline" autoplay="autoplay" muted="muted" loop="loop"><source src="assets/mp4/bg.mp4" type="video/mp4" /></video>
|
||||
<!-- Masthead-->
|
||||
<div class="masthead">
|
||||
<div class="masthead-content text-white">
|
||||
<div class="container-fluid px-4 px-lg-0">
|
||||
<h1 class="lh-1 mb-4">Our website is launching soon..</h1>
|
||||
<p class="mb-5">We are working hard to finish the development of this site.</p>
|
||||
<p class="footer"><a href='mailto:info@automatic-parking.app'>info@automatic-parking.app</a> | <a href='https://automatic-parking.app'>automatic-parking.app</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="assets/js/main.min.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
11
Source/ProofOfConcept/Pages/Index.cshtml.cs
Normal file
11
Source/ProofOfConcept/Pages/Index.cshtml.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using Microsoft.AspNetCore.Mvc.RazorPages;
|
||||
|
||||
namespace ProofOfConcept.Pages;
|
||||
|
||||
public class Index : PageModel
|
||||
{
|
||||
public void OnGet()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user