-
Notifications
You must be signed in to change notification settings - Fork 7
/
options.html
108 lines (96 loc) · 2.72 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Steam Key Activator Options</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f8f8f8;
padding: 20px;
/* text-shadow: #fff -1px 1px; */
}
h1 {
font-size: 2.2em;
margin-bottom: 20px;
color: #444;
text-align: center;
}
.form-group {
margin-bottom: 20px;
display: flex;
flex-direction: column;
}
.form-group label {
margin-bottom: 5px;
color: #555;
}
.form-group input[type="text"],
.form-group textarea {
padding: 10px;
font-size: 1.2em;
border: 1px solid #ccc;
border-radius: 4px;
}
.form-group input[type="submit"] {
padding: 10px 20px;
font-size: 1.2em;
background-color: #555;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
}
.form-group input[type="submit"]:hover {
background-color: #444;
}
.error {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
padding: 10px;
background-color: #904d00;
color: #fff;
font-weight: bold;
/* text-shadow: #000 -1px 1px; */
border-radius: 5px;
}
.success {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
padding: 10px;
background-color: #4caf50;
color: #fff;
font-weight: bold;
border-radius: 5px;
}
</style>
</head>
<body>
<h1>Options</h1>
<form id="options-form">
<div class="form-group">
<label for="sessionid-input">Session ID:</label>
<input type="text" id="sessionid-input" name="sessionid" placeholder="Enter your Steam session ID">
</div>
<div class="form-group">
<label for="steamLoginSecure-input">Steam Login Secure:</label>
<textarea id="steamLoginSecure-input" name="steamLoginSecure" rows="8"
placeholder="Enter your Steam login secure value"></textarea>
</div>
<div class="form-group">
<input type="submit" value="Save Options">
</div>
</form>
<div id="info-box"></div>
<script src="options.js"></script>
</body>
</html>