-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
40 lines (30 loc) · 1.48 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
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="http://marteinn.github.io/The-Big-Username-Blacklist-JS/dist/the-big-username-blacklist.min.js"></script>
<script src="https://unpkg.com/vue/dist/vue.js"></script>
</head>
<body>
<div id="app">
<div style="padding: 10px 10px 0 10px">
<div class="panel panel-default">
<div class="panel-body">
<h3>Username checker</h3>
<p>
This is a simple tool that lets you check if a username is in blacklist.
</å>
<div class="input-group">
<input type="text" class="form-control" name="search" v-model="search" v-on:keyup.enter="submit" placeholder="Example: admin" />
<span class="input-group-btn">
<button class="btn btn-default" type="button" v-on:click="submit">Search!</button>
</span>
</div>
</div>
</div>
<div v-if="showStatus" class="alert" v-bind:class="[valid ? 'alert-success' : 'alert-danger']" role="alert">{{ message }}</div>
</div>
</div>
<script src="http://marteinn.github.io/The-Big-Username-Blacklist-JS/tools/username-checker/app.js"></script>
</body>
</html>