-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
106 lines (103 loc) · 3.97 KB
/
popup.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="css/buefy.min.css" rel="stylesheet">
<link href="css/materialdesignicons.min.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="js/jquery-1.8.3.min.js"></script>
</head>
<body>
<div id="popup" v-cloak style="width: 600px;">
<section class="hero is-danger is-bold">
<div class="hero-body has-text-centered" style="padding: 4px 0px 6px;">
<h2 class="subtitle">
Apply Custom Script
</h2>
</section>
<div class="container">
<b-tabs position="is-centered" class="block">
<b-tab-item label="Autocomplete">
<a @click="applyScript('autocomplete_keys')" class="button is-success is-fullwidth">Apply Autocomplete Keys</a>
</b-tab-item>
<!-- SSC -->
<b-tab-item label="SSC">
<div class="box">
<article class="media">
<div class="media-content" style="overflow-x: inherit;">
<div class="content">
<a @click="applyScript('scc_basic_info')" class="is-active">
<strong>FILL BASIC DETAILS</strong>
</a>
<code>https://ssc.nic.in/Registration/Home</code>
</div>
</div>
</article>
</div>
</b-tab-item>
<!-- Railway Board -->
<b-tab-item label="Railway">
<div class="box">
<article class="media">
<div class="media-content" style="overflow-x: inherit;">
<div class="content">
<a @click="applyScript('railway_rrb')" class="is-active">
<strong>New Registration (RRB)</strong>
</a>
<br>
<code>https://bhopal.rly-rect-appn.in/rrbmic2019/new_registration.php{*}</code>
</div>
</div>
</article>
</div>
</b-tab-item>
<!-- UPSC -->
<b-tab-item label="UPSC">
<div class="box">
<article class="media">
<div class="media-content" style="overflow-x: inherit;">
<div class="content">
<a @click="applyScript('upsc_online')" class="is-active">
<strong>Registration (UPSC)</strong>
</a>
<br>
<code>https://upsconline.nic.in/tpform1.php{*}</code>
</div>
</div>
</article>
</div>
</b-tab-item>
<!-- Certificate Registration -->
<b-tab-item label="Certificate">
<div class="box">
<article class="media">
<div class="media-content" style="overflow-x: inherit;">
<div class="content">
<a @click="applyScript('ccc_nielit')" class="is-active">
<strong>Nielit CCC</strong>
</a>
<code style="font-size: 13px; word-break: break-word;">https://student.nielit.gov.in/CAND/CertificateRegistration.aspx{*}</code>
</div>
</div>
</article>
<article class="media">
<div class="media-content" style="overflow-x: inherit;">
<div class="content">
<a @click="applyScript('o_level_nielit')" class="is-active">
<strong>Nielit O Level</strong>
</a>
<code style="font-size: 13px; word-break: break-word;">https://student.nielit.gov.in/CAND/CertificateRegistration.aspx{*}</code>
</div>
</div>
</article>
</div>
</b-tab-item>
</b-tabs>
</div>
</div>
<script src="js/vue.min.js"></script>
<script src="js/buefy.min.js"></script>
<script src="js/popup.min.js"></script>
</body>
</html>