iclop_v1/resources/views/welcome.blade.php
2022-08-17 19:44:54 +07:00

136 lines
3.3 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Laravel</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Nunito:200,600" rel="stylesheet">
<!-- Styles -->
<style>
html,
body {
background-color: #fff;
color: #636b6f;
font-family: 'Nunito', sans-serif;
font-weight: 200;
height: 100vh;
margin: 0;
}
.full-height {
height: 100vh;
}
.flex-center {
align-items: flex-start;
display: flex;
justify-content: left;
margin-left: 5%;
}
.position-ref {
position: relative;
}
.top-right {
position: absolute;
right: 10px;
top: 18px;
}
.content {
text-align: center;
}
.video {
margin-top: 12%;
margin-left: 12%;
}
.contact {
margin-top: 20%;
font-size: 13px;
text-align: center;
color: #636b6f;
letter-spacing: .07rem;
margin-bottom: 2px;
}
.info {
margin-top: 2px;
color: #636b6f;
font-size: 13px;
text-align: center;
color: #636b6f;
letter-spacing: .07rem;
}
.title {
font-size: 84px;
}
.links>a {
color: #636b6f;
padding: 0 25px;
font-size: 13px;
font-weight: 600;
letter-spacing: .1rem;
text-decoration: none;
text-transform: uppercase;
}
.m-b-md {
margin-bottom: 30px;
}
</style>
</head>
<body>
<div class="flex-center position-ref full-height">
@if (Route::has('login'))
<div class="top-right links">
@auth
<a href="{{ url('/home') }}">Home</a>
@else
<a href="{{ route('login') }}">Login</a>
@if (Route::has('register'))
<a href="{{ route('register') }}">Register</a>
@endif
@endauth
</div>
@endif
<div class="content">
<div class="title m-b-md">
<p>Welcome to</p>
<img src="{{asset('lte/dist/img/iclop-logo.png')}}" alt="iCLOP logo" class="brand-image elevation-3" style="width:620px;height:200px;">
</div>
<div class="links">
<p>A self learning of Android applications programming with automatic checking feature</p>
</div>
<div>
<p class="contact">Email: <span style="font-weight: bold; font-size:13px;color:#636b6f">qulispolinema.ac.id</span></p>
<p class="info">To prevent email spam, Please replace <span style="font-weight: bold;"></span> with the @ mark.</p>
</div>
</div>
<div class="video">
<iframe width="460" height="325" src="//www.youtube.com/embed/Fxb83_UFI0M" frameborder="0" allowfullscreen></iframe>
</div>
</div>
</body>
</html>