forked from JetBrains/xdebug-extension
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
36 lines (33 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Xdebug Extension Options</title>
<link rel="stylesheet" type="text/css" href="options.css">
</head>
<body>
<h1>Xdebug Extension</h1>
<form>
<fieldset>
<legend>Options</legend>
<label for="debugtrigger">Debug Trigger or Xdebug Cloud Key</label>
<input type="text" id="debugtrigger" placeholder="Debug trigger or Xdebug Cloud Key" value="YOUR-NAME">
<label for="tracetrigger">Trace Trigger</label>
<input type="text" id="tracetrigger" placeholder="Trace trigger" value="">
<label for="profiletrigger">Profile Trigger</label>
<input type="text" id="profiletrigger" placeholder="Profile trigger" value="">
<button type="reset">Clear</button>
<button type="submit">Save</button>
</fieldset>
</form>
<div id="help">
<h2>Shortcuts</h2>
</div>
<a href="https://github.com/FraserChapman/xdebug-extension" target="_blank">
<img src="img/github25.png" alt="GitHub logo" width="25" height="25">
xdebug-extension
</a>
<script src="options.js"></script>
</body>
</html>