V1
This commit is contained in:
30
templates/error.html.tmpl
Normal file
30
templates/error.html.tmpl
Normal file
@@ -0,0 +1,30 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, internal-scale=1, viewport-fit=cover">
|
||||
<title>My Luggage Info</title>
|
||||
<link rel="stylesheet" href="/static/style.css?v=43">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header class="header">
|
||||
<img class="header-icon" src="/static/icon.png" alt="icon"/>
|
||||
<h1 class="title">My Luggage Info</h1>
|
||||
<div class="spacer"></div>
|
||||
</header>
|
||||
<div class="container">
|
||||
<div class="content flex-vertical">
|
||||
<div class="section-one">
|
||||
<h1>Error</h1>
|
||||
<p>Please report the following to Steven</p>
|
||||
<p>{{ .error }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer class="footer">
|
||||
<p class="footer-text">Made hastily by <a class="footer-text" href="https://www.linkedin.com/in/steven-tracey18/">Steven Tracey</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
34
templates/info.html.tmpl
Normal file
34
templates/info.html.tmpl
Normal file
@@ -0,0 +1,34 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, internal-scale=1, viewport-fit=cover">
|
||||
<title>My Luggage Info</title>
|
||||
<link rel="stylesheet" href="/static/style.css?v=43">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header class="header">
|
||||
<img class="header-icon" src="/static/icon.png" alt="icon"/>
|
||||
<h1 class="title">My Luggage Info</h1>
|
||||
<div class="spacer"></div>
|
||||
</header>
|
||||
<div class="container">
|
||||
<div class="content flex-vertical">
|
||||
<div class="section-one flex-vertical">
|
||||
<h1>Owner Information</h1>
|
||||
</div>
|
||||
<div class="section-two flex-vertical align-left">
|
||||
<p>Contact Name: {{ .contact_name }}</p>
|
||||
<p>Phone Number: {{ .phone_number }}</p>
|
||||
<p>Email Address: {{ .email_address }}</p>
|
||||
<p>Address: {{ .address }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer class="footer">
|
||||
<p class="footer-text">Made hastily by <a class="footer-text" href="https://www.linkedin.com/in/steven-tracey18/">Steven Tracey</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user