This repository has been archived by the owner on May 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
options.html
122 lines (113 loc) · 4.85 KB
/
options.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!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, shrink-to-fit=no">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>FACEIT HELPER</title>
<!-- Bootstrap core CSS -->
<link href="lib/tether.min.css" rel="stylesheet">
<link href="lib/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<style>
body {
padding-top: 5rem;
background: #f5f5f5;
}
.starter-template {
padding: 3rem 1.5rem;
text-align: center;
}
.descbox {
background-color: #eceeef;
border-radius: 10px;
padding: 10%;
}
</style>
<nav class="navbar navbar-fixed-top navbar-dark bg-inverse">
<a class="navbar-brand" href="#">
<img src="icons/icon128.png" width="30" height="30" class="d-inline-block align-top rounded" alt=""> FACEIT HELPER </a>
<ul class="nav navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="options.html">Main</a>
</li>
<li class="nav-item">
<a class="nav-link" target="_blank" href="https://github.com/Poheart/FACEIT-HELPER">Github</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
<span class="float-xs-right">
<a class="btn btn-danger" href="#" role="button" id="save-options">Save Configuration</a>
</span>
</nav>
<div class="container-fluid">
<div class="alert alert-success" role="alert" id="settingSaved" style="display:none">
<strong>Setting saved!</strong> Refresh all active FACEIT.com pages for setting to apply.
</div>
<div class="alert alert-info" role="alert">This option page is design for advanced configuration for FACEIT HELPER
<br>
<strong>Basic features toggle ON/OFF are available in the navigation bar on FACEIT.com</strong>
</div>
<!-- Head section -->
<div class="col-md-2">
<h5>General Settings</h5>
</div>
<div class="col-md-7">
<fieldset class="form-group">
<legend>Auto-veto enable on</legend>
<div class="form-check">
<label class="form-check-label">
<input type="radio" class="form-check-input" name="optionsRadios" id="optionsRadios1" value="option1" checked> MAPS ONLY
</label>
</div>
<div class="form-check disabled">
<label class="form-check-label">
<input type="radio" class="form-check-input" name="optionsRadios" id="optionsRadios2" value="option2" disabled> SERVERS ONLY
</label>
</div>
<div class="form-check disabled">
<label class="form-check-label">
<input type="radio" class="form-check-input" name="optionsRadios" id="optionsRadios3" value="option3" disabled> BOTH SERVERS + MAPS
</label>
</div>
</fieldset>
</div>
<div class="col-md-3">
<div class="container descbox">
<p> This is a placeholder option and will be implemented soon.</p>
</div>
</div>
<!-- Section seperator -->
<hr class="col-md-12">
<!-- Next section -->
<div class="col-md-2">
<h5>Blacklisted Players</h5>
</div>
<div class="col-md-7">
<div class="form-check">
<label class="form-check-label">
<input class="form-check-input" type="checkbox" id="blacklist_box"> Enable Blacklist
</label>
</div>
<div class="form-group">
<textarea class="form-control" rows="5" id="blacklist_textarea" placeholder="Player FACEIT username(seperate each user line by line)" disabled></textarea>
</div>
</div>
<div class="col-md-3">
<div class="container descbox">
<p> Configurate Auto-accept feature to not to accept the match whenever the player(s) in the list are on your matches</p>
<p class="text-danger"> This feature requires both <strong>Show Matched Player</strong> and <strong>Auto-Accept</strong> Enabled!</p>
</div>
</div>
</div>
<!-- /.container -->
<script src="lib/jquery.min.js"></script>
<script src="lib/tether.min.js"></script>
<script src="lib/bootstrap.min.js"></script>
<script src="js/option.js"></script>
</body>
</html>