-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (86 loc) · 2.65 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta
name="description"
content="A simple utility for texgt find-and-replace."
/>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Text Replacer</title>
<!-- Latest compiled and minified CSS -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu"
crossorigin="anonymous"
/>
<!-- Optional theme -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap-theme.min.css"
integrity="sha384-6pzBo3FDv/PJ8r2KRkGHifhEocL+1X2rVCTTkUfGk7/0pbek5mMa1upzvWbrUbOZ"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
<script src="script.js"></script>
</head>
<body>
<header class="page-header">
<h1 class="text-center">Find and Replace Text</h1>
</header>
<div id="main" class="container panel panel-default">
<form id="ui" class="panel-body">
<div class="form-group">
<label for="input-text">Text to operate on:</label>
<textarea
class="form-control"
name="input-text"
id="input-text"
></textarea>
</div>
<div class="form-inline">
<label for="search-string">Replace</label>
<input
type="text"
class="form-control"
name="search-string"
id="search-string"
/>
<label for="replace-string">with</label>
<input
type="text"
class="form-control"
name="replace-string"
id="replace-string"
/>
</div>
<div class="form-group">
<label for="output-text">Result:</label>
<textarea
class="form-control"
name="output-text"
id="output-text"
readonly
>
</textarea>
</div>
<input
type="submit"
class="btn btn-primary"
id="submit-btn"
value="Replace"
/>
</form>
</div>
<footer class="footer">
<div class="container">
<span class="text-muted">
Made with ♥ by Alterae | Fork on
<a href="https://github.com/alterae/text-replacer">GitHub</a>
</span>
</div>
</footer>
</body>
</html>