-
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.
Merge branch 'master' into chiarasWork
- Loading branch information
Showing
11 changed files
with
221 additions
and
66 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
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
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
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
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,113 @@ | ||
<!DOCTYPE html> | ||
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>Booking</title> | ||
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> | ||
<script src="https://code.jquery.com/jquery-1.12.4.js"></script> | ||
<link rel="stylesheet" href="/booking-style.css"> | ||
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> | ||
<script src="/permanent.js"></script> | ||
<title>Email confirmation</title> | ||
<style> | ||
@import url('https://fonts.googleapis.com/css?family=Oxanium&display=swap'); | ||
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab&display=swap'); | ||
@media only screen and (max-width: 768px) { .content { width: 100%; } } | ||
a:link { color: #AFAFAF; !important; } | ||
a:visited { color: #AFAFAF; !important; } | ||
|
||
body { | ||
font-family: Roboto Slab, serif; | ||
font-size: 20px; | ||
} | ||
|
||
.horizontal-border { | ||
height: 20px; | ||
background-color: #EFEFEF; | ||
} | ||
|
||
.vertical-border { | ||
width: 20px; | ||
height: auto; | ||
background-color: #EFEFEF; | ||
} | ||
|
||
.content { | ||
width: 40%; | ||
height: auto; | ||
margin-left: auto; | ||
margin-right: auto; | ||
} | ||
|
||
.center { | ||
width: 100%; | ||
background-color: white; | ||
margin: 20px; | ||
} | ||
|
||
label { | ||
/*float: left;*/ | ||
width: 50%; | ||
} | ||
|
||
input { | ||
width: 50%; | ||
font-family: Roboto Slab, serif, Roboto, Verdana; | ||
font-size: 20px; | ||
float: right; | ||
} | ||
|
||
button { | ||
font-family: Oxanium, serif, Helvetica; | ||
font-size: 20px; | ||
width: auto; | ||
margin-top: 50px; | ||
margin-left: auto; | ||
margin-right: auto; | ||
background-color: #FF6219; | ||
color: white; | ||
border: 0; | ||
padding: 12px 40px; | ||
display: flex; | ||
align-self: center; | ||
} | ||
|
||
.separator { | ||
width: 100%; | ||
height: 20px; | ||
} | ||
</style> | ||
</head> | ||
<body style="background-color: white;"> | ||
<div class="content"> | ||
<!-- logos --> | ||
<div > | ||
<img src="https://i.ibb.co/VMQ8rtj/corona-prevention-logo.png" alt="Corona Prevention logo" style="margin-top: 20px; width: auto; height: 60px;"/> | ||
<img src="https://i.ibb.co/fncfghn/kobenhavns-kommune-logo.png" alt="Kobenhavns kommune" style="margin-top: 20px; width: auto; height: 60px; float: right;"/> | ||
</div> | ||
|
||
<!--Top--> | ||
<div class="horizontal-border"></div> | ||
|
||
<!--Middle--> | ||
<div style="display: flex; justify-content: space-between;"> | ||
<!--Left--> | ||
<div class="vertical-border" style="float: left;"></div> | ||
|
||
<!--Center--> | ||
<div class="center"> | ||
<h2 style="text-align: center; margin: 100px 10px;">Oh no! Looks like this page doesn't exist, or you do not have access to it.</h2> | ||
<button class="cta" onclick="window.location.href='/'">Go back</button> | ||
</div> | ||
|
||
<!--Right--> | ||
<div class="vertical-border" style="float: right;"></div> | ||
</div> | ||
|
||
<!--Bottom--> | ||
<div class="horizontal-border" /> | ||
</div> | ||
</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
Oops, something went wrong.