You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.8 KiB
69 lines
2.8 KiB
4 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Keybinds</title>
|
||
|
<link rel="stylesheet" href="../stylesheets/bootstrap.min.css">
|
||
|
<link rel="stylesheet" href="../stylesheets/main.css">
|
||
|
<link rel="stylesheet" href="../stylesheets/keybinds.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="container pt-3 h-100">
|
||
|
<h1>
|
||
|
Keybinds
|
||
|
<button class="btn btn-info float-right mt-4">Create new keybind</button>
|
||
|
</h1>
|
||
|
<hr class="dark">
|
||
|
<div class="card-dark">
|
||
|
<div class="row p-3">
|
||
|
<div class="action col">
|
||
|
<span class="bold text-muted">ACTION</span>
|
||
|
<div class="row mt-2">
|
||
|
<div class="col">
|
||
|
<select name="" id="" class="form-control bg-dark border-0">
|
||
|
<option value="">Category</option>
|
||
|
</select>
|
||
|
</div>
|
||
|
<div class="col">
|
||
|
<select name="" id="" class="form-control bg-dark border-0">
|
||
|
<option value="">Action</option>
|
||
|
</select>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="keybind col">
|
||
|
<span class="bold text-muted">KEYBIND</span>
|
||
|
<input type="text" readonly value="Unset, click to set" class="keybind-input form-control bg-dark border-0 mt-2">
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<hr class="dark">
|
||
|
<div class="card-dark">
|
||
|
<div class="row p-3">
|
||
|
<div class="action col">
|
||
|
<span class="bold text-muted">ACTION</span>
|
||
|
<div class="row mt-2">
|
||
|
<div class="col">
|
||
|
<select name="" id="" class="form-control bg-dark border-0">
|
||
|
<option value="">Category</option>
|
||
|
</select>
|
||
|
</div>
|
||
|
<div class="col">
|
||
|
<select name="" id="" class="form-control bg-dark border-0">
|
||
|
<option value="">Action</option>
|
||
|
</select>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="keybind col">
|
||
|
<span class="bold text-muted">KEYBIND</span>
|
||
|
<input type="text" readonly value="Unset, click to set"
|
||
|
class="keybind-input form-control bg-dark border-0 mt-2">
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<script src="../javascripts/keybinds.js"></script>
|
||
|
</body>
|
||
|
</html>
|