forked from IndreamLuo/GNIBIRPAndVisaAppointment.Chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportal.html
92 lines (81 loc) · 3.38 KB
/
portal.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<html>
<head>
<script type="text/javascript" src="Content/jquery-3.3.1.min.js"></script>
<script src="Content/moment.min.js"></script>
<script type="text/javascript" src="Bootstrap/popper.min.js"></script>
<script type="text/javascript" src="Bootstrap/bootstrap.min.js"></script>
<link type="text/css" rel="stylesheet" href="Bootstrap/bootstrap.min.css" />
<script type="module" src="Content/irp-dates.js"></script>
<script type="module" src="Content/decoders.js"></script>
<script type="module" src="Content/status-control.js"></script>
<script type="text/javascript" src="Content/appointment-apis.js"></script>
<script type="text/javascript" src="Content/form-storage.js"></script>
<script type="text/javascript" src="Content/form-assistant.js"></script>
<script type="module" src="Content/preset.js"></script>
<script type="text/javascript" src="Content/appointment.js"></script>
<script type="text/javascript" src="Content/master.js"></script>
<link type="text/css" rel="stylesheet" href="Content/master.css" />
<script type="text/javascript" src="Content/portal.js"></script>
<link type="text/css" rel="stylesheet" href="Content/portal.css" />
</head>
<body>
<nav class="navbar navbar-expand-sm navbar-light bg-light fixed-top">
<img class="logo" src="icon.png" />
GNIB / IRP Appointment
</nav>
<div class="progress" style="height: 5px">
<div class="progress-bar bg-danger" role="progressbar"></div>
</div>
<table class="irp table table-sm">
<thead>
<tr>
<th colspan="3">
</th>
</tr>
<tr>
<th></th>
<th scope="col">New</th>
<th scope="col">Renewal</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Work</th>
<td class="work-new"></td>
<td class="work-renewal"></td>
</tr>
<tr>
<th>Study</th>
<td class="study-new"></td>
<td class="study-renewal"></td>
</tr>
<tr>
<th>Other</th>
<td class="other-new"></td>
<td class="other-renewal"></td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="3">
<div class="form-row align-items-left">
<div class="col-auto">
<a class="btn btn-success appoint" form-type="irp" href="https://burghquayregistrationoffice.inis.gov.ie/Website/AMSREG/AMSRegWeb.nsf/AppSelect?OpenForm">Appoint</a>
</div>
<div class="col-auto">
<a class="btn btn-primary preset" target="_self" href="preset.irp.html">Preset</a>
</div>
</div>
</td>
</tr>
</tfoot>
</table>
<iframe class="proxy" set-src="https://burghquayregistrationoffice.inis.gov.ie/Website/AMSREG/AMSRegWeb.nsf/AppSelect?OpenForm&proxy=true"></iframe>
<div class="waiting">
<div class="alert alert-danger">
Don't close. Auto-filling your form from Preset.
</div>
<img class="rounded mx-auto d-block" style="width: 200px" src="Content/loading.gif" />
</div>
</body>
</html>