-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (53 loc) · 2.54 KB
/
index.html
File metadata and controls
54 lines (53 loc) · 2.54 KB
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
<!DOCTYPE html>
<html>
<head>
<title>AAA</title>
<link rel="stylesheet" href="https://unpkg.com/bootstrap-material-design@4.1.1/dist/css/bootstrap-material-design.min.css" integrity="sha384-wXznGJNEXNG1NFsbm0ugrLFMQPWswR3lds2VeinahP8N0zJw9VWSopbjv2x7WCvX" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js"></script>
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> -->
<script type="text/javascript" src="js/magic.js"></script>
</head>
<body>
<div class="container mt-3">
<button type="button" class="btn btn-outline-success gen">Generate String</button>
<button type="button" class="btn btn-outline-danger cou">Count String</button>
</div>
<div class="bum">
<div class="container mt-2">
<div class="form-group mt-3">
<label for="input">Number</label>
<input type="number" class="form-control numm" id="exampleInputEmail1" aria-describedby="number" placeholder="Number">
<small id="emailHelp" class="form-text text-muted mb-2">Input lenght of string</small>
<button type="button" class="btn btn-outline-success ok" onUnfocus="send()">OKE</button>
</div>
</div>
<div class="container mt-2 hehe">
<div class="form-group mt-3">
<label for="input">String Result</label>
<input type="text" class="form-control" id="result" aria-describedby="number" placeholder="Result over here">
<small id="" class="form-text text-muted mb-2">Result string</small>
<button type="button" class="btn btn-outline-success copy">Copy</button>
</div>
</div>
</div>
<div class="bem">
<div class="container mt-2">
<div class="form-group mt-3">
<label for="input">String</label>
<input type="text" class="form-control stringa" id="exampleInputEmail1" aria-describedby="text" placeholder="Paste string here">
<small id="emailHelp" class="form-text text-muted mb-2">Input string</small>
<div class="btn-group mr-4" data-toggle="buttons">
<label class="btn btn-primary form-check-label">
<input type="checkbox" class="form-check-input" autocomplete="off"> Count space
</label>
</div>
<button type="button" class="btn btn-outline-danger count">Count</button>
<button type="button" class="btn btn-outline-danger paste">Paste (IE)</button>
<button type="button" class="btn btn-outline-danger pastea">Paste from String Result</button>
</div>
<span class="badge badge-pill badge-danger aa">0</span>
</div>
</div>
</body>
</html>