-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsuccess.html
26 lines (25 loc) · 890 Bytes
/
success.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Successfully created new inspection list</title>
<link rel="shortcut icon" href="Assets/leadwayLG.png" type="image/x-icon">
<link rel="stylesheet" href="styles/success.css" />
</head>
<body>
<div class="container-fixed">
<div>
<img src="Assets/success-logo.svg" alt="" />
<p>
YOU'VE SUCCESSFULLY CREATED NEW <br />
INSPECTION ID 23456 FOR PRIME GARGEN
</p>
<div class="btn-links">
<a href="./requests.html"><button class="request-btn">Go to request form</button></a>
<a href="./inspection-form.html"><button class="new-inspection-btn">Create new inspection</button></a>
</div>
</div>
</div>
</body>
</html>