-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
602b4ad
commit 74879a0
Showing
6 changed files
with
49 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<!-- Required meta tags --> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<title>Veiled Haven - Vanilla Survival Minecraft</title> | ||
<meta name="description" content=""/> | ||
|
||
<!--Inter UI font--> | ||
|
||
<!--vendors styles--> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | ||
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.css"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick-theme.min.css"> --> | ||
|
||
<!-- Bootstrap CSS / Color Scheme --> | ||
<link rel="stylesheet" href="css/default.css" id="theme-color"> | ||
</head> | ||
<body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
|
||
<!-- jQuery first, then Popper.js, then Bootstrap JS --> | ||
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script> | ||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/feather-icons/4.7.3/feather.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.js"></script> | ||
<script src="js/scripts.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,15 @@ | ||
<!DOCTYPE html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<title>Form</title> | ||
<link rel="icon" type="image/x-icon" href="/images/favicon.ico"> | ||
</head> | ||
{% include 'parts/head.html' %} | ||
<!--hero header--> | ||
<section class="bg-image bg-image-3 py-7 py-md-0 bg-hero" id="home"> | ||
<div class="container"> | ||
<div class="row vh-md-100"> | ||
<div class="col-md-8 col-sm-10 col-12 mx-auto my-auto text-center"> | ||
<h1 class="heading-black text-capitalize">Success!</h1> | ||
<p class="lead py-3">We'll contact you via Discord! Make sure that you are able to receive Friend Requests!</p> | ||
<p class="lead py-3">You can now close this tab, or go <a href="/">back to the Homepage</p> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
{% include 'parts/tail.html' %} | ||
|
||
<body><center> | ||
<h1>Success, we'll contact you via Discord! Make sure that you are able to recieve Friend Requests!</h1> | ||
<p>You can now close this tab, or go <a href="/">back to the Homepage</a></p> | ||
</center></body> | ||
|
||
<style> | ||
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap'); | ||
head, body { | ||
margin: 0; | ||
padding: 0; | ||
color: white; | ||
background-color: #111622; | ||
font-family: 'Roboto', sans-serif; | ||
} | ||
center { | ||
top: 40%; | ||
position: absolute; | ||
height: 50%; | ||
width: 100%; | ||
} | ||
</style> |