generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
approval.html
42 lines (40 loc) · 1.55 KB
/
approval.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="A purchase order system that will help resolving everyday issues small companies have and have a better control of their ordering">
<meta name="keywords" content="Purchase Order System Analytical Control Restaurant Business">
<title>Purchase Assistant</title>
<link rel="stylesheet" href="assets/css/style.css">
<link rel="shortcut icon" href="#">
</head>
<body>
<header>
<nav class="style-header">
<div>
<a href="calculate.html">
<div class="style">
<h3>The Purchase Helper</h3>
<div class="logo"></div>
</div>
</a>
</div>
<div id="log-out">
<a href="./index.html" id="go-back">Log Out</a>
</div>
</nav>
</header>
<div class="approve">
<img src="./assets/images/little-chef.jpeg" alt="a chef">
<h3>Thank you for submitting your order!</h3>
<p>An email has been sent to your manager for approval</p>
<p>Your order number is <span id="order-number"></span></p>
</div>
<footer class="style-footer">
<p>© The Purchase Helper Copyright 2022 All Rights Reserved Created by Daniel Porras</p>
</footer>
<script src="assets/js/approval.js"></script>
</body>