-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
56 lines (49 loc) · 1.74 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
<!DOCTYPE html>
<html class="document-popup">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Git Branch From Clipboard by @hachesilva</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body class="page-extension">
<ul class="menu" id="menu">
<li class="menu-item"><a href="#settings" id="settings" data-translate="txtSettings">Settings</a></li>
<li class="menu-item"><a href="#help" id="help" data-translate="txtHelp">Help</a></li>
</ul>
<section class="pane pane--main">
<div class="pane__header">
<h1 class="pane__title">Git Branch From Clipboard</h1>
<a href="#help" class="btn btn-help" id="btn-menu"><i class="icon"></i></a>
</div>
<main class="pane__content">
<div id="app">
<form action="_SELF" id="form">
<input type="text" name="name" id="name" autofocus>
<input type="submit" name="submit" id="submit" value="Get branch name">
<textarea type="text" name="result" id="result"></textarea>
</form>
</div>
</main>
</section>
<div class="help-overlay">
<section class="pane pane--help">
<div class="pane__header">
<h1 class="pane__title" data-translate="txtHelp">Help</h1>
<a href="#close" class="btn btn-close" id="close"><i class="icon">X</i></a>
</div>
<div class="instructions">
<h2 data-translate="txtUsage">Usage Instructions</h2>
<div data-translate="txtInstructions">
(_instructions_)
</div>
<p class="donation">
<a href="https://www.paypal.me/hachesilva" title="Donate with paypal" class="btn btn-donate" target="_blank" data-translate="txtDonate">Donate</a>
</p>
</div>
</section>
</div>
<script src="js/utils.js"></script>
<script src="js/main.js"></script>
</body>
</html>