-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom-regex.html
39 lines (30 loc) · 1.1 KB
/
custom-regex.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
<!DOCTYPE html>
<html lang="en">
<head>
<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>Music Player</title>
<link rel="stylesheet" href="https://linfindel.github.io/nadircss/nadir.css">
<style></style>
</head>
<body>
<div class="navbar-column">
<nav id="navbar">
<h1>Music Player</h1>
</nav>
<button onclick="location.href = 'settings.html'" id="back">
<span translate="no" class="material-symbols-rounded">arrow_back</span>
Back
</button>
</div>
<div class="card row">
<input type="text" id="filename" placeholder="Filename" oninput="localStorage.setItem('filename', this.value)">
<h1 translate="no" class="material-symbols-rounded">add</h1>
<input type="text" id="custom-regex" placeholder="Custom regex" oninput="localStorage.setItem('custom-regex', this.value)">
<h1 translate="no" class="material-symbols-rounded">arrow_forward</h1>
<h1 id="result"></h1>
</div>
<script src="custom-regex.js"></script>
</body>
</html>