-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
70 lines (64 loc) · 2.29 KB
/
popup.html
File metadata and controls
70 lines (64 loc) · 2.29 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" href="popup.css" />
<title>MileIQ Account Creator</title>
</head>
<body>
<div class="container">
<!-- Header -->
<header class="header">
<div class="logo">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="2"/>
<path d="M8 12l2 2 4-4" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<span>MileIQ Account Creator</span>
</div>
</header>
<!-- Environment Tabs -->
<div class="tabs">
<button class="tab active" data-env="dev">Development</button>
<button class="tab" data-env="staging">Staging</button>
<button class="tab" data-env="prod">Production</button>
</div>
<!-- Content Area -->
<div class="content">
<div class="env-content active" id="dev-content">
<div class="env-header">
<h2>Development Environment</h2>
<p>Create test accounts for development</p>
</div>
<div class="account-grid" id="dev-grid">
<!-- Dynamic content will be inserted here -->
</div>
</div>
<div class="env-content" id="staging-content">
<div class="env-header">
<h2>Staging Environment</h2>
<p>Create accounts for staging tests</p>
</div>
<div class="account-grid" id="staging-grid">
<!-- Dynamic content will be inserted here -->
</div>
</div>
<div class="env-content" id="prod-content">
<div class="env-header">
<h2>Production Environment</h2>
<p>Create production accounts</p>
</div>
<div class="account-grid" id="prod-grid">
<!-- Dynamic content will be inserted here -->
</div>
</div>
</div>
<!-- Footer -->
<footer class="footer">
<p>Select an account type to create</p>
</footer>
</div>
<script src="popup.js"></script>
</body>
</html>