-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
51 lines (51 loc) · 1.14 KB
/
Copy pathoptions.html
File metadata and controls
51 lines (51 loc) · 1.14 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Basecamp Priority Settings</title>
<style>
body {
padding: 20px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.container {
max-width: 500px;
margin: 0 auto;
}
label {
display: block;
margin-bottom: 5px;
}
input {
width: 100%;
padding: 8px;
margin-bottom: 20px;
}
button {
background: #1d2d35;
color: white;
border: none;
padding: 10px 20px;
cursor: pointer;
border-radius: 4px;
}
button:hover {
background: #2c3e48;
}
.status {
margin-top: 10px;
color: green;
display: none;
}
</style>
</head>
<body>
<div class="container">
<h2>Basecamp Priority Settings</h2>
<label for="accountId">Basecamp Account ID:</label>
<input type="text" id="accountId" placeholder="Enter your Basecamp account ID">
<button id="save">Save</button>
<div id="status" class="status">Settings saved!</div>
</div>
<script src="options.js"></script>
</body>
</html>