-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7892112
commit 70eb56c
Showing
8 changed files
with
77 additions
and
25 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,19 +2,34 @@ | |
<html> | ||
<head> | ||
<link rel="stylesheet" href="style.css"> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous"> | ||
</head> | ||
<body> | ||
<div> | ||
<label for="aliasInput">Alias</label> | ||
<input id="aliasInput"> | ||
<br /> | ||
<label for="urlInput">URL</label> | ||
<input id="urlInput"> | ||
<br /> | ||
<button id="saveAlias">Save</button> | ||
</div> | ||
<div> | ||
<p id="prevAliases"></p> | ||
<div id="titleArea" class="junbotron jumbotron-fluid"> | ||
<div class="row"> | ||
<div class="col-4"> | ||
<img src="icons/logo48.png"> | ||
</div> | ||
<div class="col-6"> | ||
<h3>URL Alias Extension</h3> | ||
</div> | ||
</div> | ||
</div> | ||
<div id="inputArea"> | ||
<label for="aliasInput">Alias</label> | ||
<input id="aliasInput" type="text" placeholder="Alias"> | ||
<br /> | ||
<label for="urlInput">URL</label> | ||
<input id="urlInput" type="text" placeholder="URL"> | ||
<br /><br /> | ||
<button id="saveAlias" type="button" class="btn btn-primary btn-sm">Save</button> | ||
</div> | ||
<div id="contentArea"> | ||
<h5>Aliases in use:</h5> | ||
<ul id="prevAliases" class="list-group list-group-flush"> | ||
</ul> | ||
</div> | ||
</div> | ||
<script src="popup.js"></script> | ||
</body> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters