-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (62 loc) · 3.4 KB
/
index.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<!-- Font Awesome JS -->
<script src="https://kit.fontawesome.com/71d4e68da2.js" crossorigin="anonymous"></script>
<!-- stylesheets -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./toolkit.css">
<link rel="stylesheet" href="./application.css">
<link rel="stylesheet" type="text/css" href="./style.css" />
<title>Postcode Finder</title>
</head>
<body>
<div class="container-fluid d-flex flex-column justify-content-center align-items-center py-3">
<form class="text-center app-login-form pb-lg-4 mt-0" id="contact-form">
<i class="d-flex card-profile-img p-3 fas fa-globe-americas globe-circle align-items-center justify-content-center mx-auto" id="form-profile-img" aria-hidden="true"></i>
<h6 class="text-white mx-auto my-4">Please enter at least two lines of an address below to get the postcode...</h6>
<div class="form-group mx-auto">
<div id="error-message" class="my-0"></div>
</div>
<div class="form-group mx-auto">
<input type="text" name="address1" id="address1" class="form-control" placeholder="Address line 1">
</div>
<div class="form-group mx-auto">
<input type="text" name="address2" id="address2" class="form-control" placeholder="Address line 2">
</div>
<div class="form-group mx-auto mb-4">
<input type="text" name="address3" id="address3" class="form-control" placeholder="Address line 3">
</div>
<div class="mb-2">
<button type="button" class="btn btn-send btn-sm py-3 px-5 mt-md-1 mb-4" id="btn-find-postcode">
<span class="text-see-more" id="text-send">Find postcode!</span>
</button>
</div>
</form>
</div>
<!-- Modal -->
<div class="modal fade" id="example-modal" tabindex="-1" aria-labelledby="example-modal-label" aria-hidden="true">
<div class="modal-dialog-wrapper">
<div class="modal-dialog vertical-align-center">
<div class="modal-content">
<div class="modal-header text-center py-4">
<h3 class="modal-title" id="example-modal-label"></h3>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body mx-auto my-3" id="modal-message"></div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary mx-auto" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns" crossorigin="anonymous"></script>
<script src="./script.js"></script>
</body>
</html>