forked from shaal/drupalpod-browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
67 lines (66 loc) · 2.53 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DrupalPod</title>
<script src="scripts/popup.js"></script>
<link rel="stylesheet" type="text/css" href="css/popup.css">
</head>
<body>
<div class="container">
<div class="page-header">
<h2>DrupalPod <img class="logo" src="icons/DrupalPod-128.png" alt="DrupalPod Logo"></h2>
<p class="reading-page-status">
Please wait...
</p>
</div>
<div class="warnings" role="alert">
<p class="something-went-wrong-instructions hidden">
Something went wrong, please report the error
</p>
<p class="not-issue-page-instructions hidden">
Open an issue page on Drupal.org to see the available options
</p>
<p class="no-issue-fork-instructions hidden">
Please click on the "Create issue fork" green button on this issue page.
</p>
<p class="no-push-access-instructions hidden">
Please click on the "Get push access" green button on this issue page.
</p>
<p class="not-logged-in-instructions hidden">
Please log in to Drupal.org
</p>
</div>
<hr>
<form class="form-selection hidden" id="form-selection" aria-live="polite">
<p class="hidden"><strong>DrupalPod repo: <span id="devdrupalpod"></span></strong></p>
<p><strong>Project name: <span id="project-name"></span></strong></p>
<p><strong>Project type: <span id="project-type"></span></strong></p>
<p><strong>Module Version: <span id="module-version"></span></strong></p>
<p class="hidden"><strong>Repo: <span id="drupalpod-repo"></span></strong></p>
<p><strong>Issue fork: <span id="issue-fork"></span></strong></p>
<p>Select from the options below:</p>
<label for="issue-branch">Branch:</label>
<select name="issue-branch" id="issue-branch">
</select>
<br>
<label for="core-version">Drupal core version:</label>
<select name="core-version" id="core-version">
</select>
<br>
<label for="available-patches">Choose a patch:</label>
<select name="available-patches" id="available-patches">
</select>
<br>
<label for="install-profile">Install profile:</label>
<select name="install-profile" id="install-profile">
</select>
<br>
<br>
<button id="submit" type="submit"><h2>Open Dev Env</h2></button>
<form/>
</div>
</body>
</html>