cleanup repo + add articles
This commit is contained in:
53
archive/etyd/index.html
Normal file
53
archive/etyd/index.html
Normal file
@@ -0,0 +1,53 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<script src="_static/etyd.js"></script>
|
||||
<link rel="stylesheet" href="_static/index.css">
|
||||
<title>etyd.cc</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>etyd.cc URL Shortener</h1>
|
||||
|
||||
<div class="flexbox"> <!--FLEXBOX: [Input Panel] [Log]-->
|
||||
|
||||
<div class="marginright1em">
|
||||
|
||||
<button class="marginbottom1em" id="loginbutton">Logout enstrayed</button>
|
||||
|
||||
<div class="marginbottom1em">
|
||||
<label for="action">I want to </label>
|
||||
<select name="action" id="actiondropdown">
|
||||
<option value="POST">Add</option>
|
||||
<option value="DELETE">Delete</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="marginbottom1em">
|
||||
<label for="url">etyd.cc/</label>
|
||||
<input type="text" id="targetfield"><input type="checkbox" id="randomizationtoggle" onclick="randomUrlTick()"> <label>Random</label>
|
||||
</div>
|
||||
|
||||
<div class="marginbottom1em">
|
||||
<label for="value">to go to: </label>
|
||||
<input type="text" id="valuefield" placeholder="https://example.com">
|
||||
<button onclick="buttonFillFromClipboard()" id="clipboard1">Clipboard</button>
|
||||
</div>
|
||||
|
||||
<div class="marginbottom1em">
|
||||
<button onclick="buttonSubmit()" id="buttonSubmit">Submit</button>
|
||||
<button onclick="buttonCopyUrl()" id="buttonCopyUrl">Copy Shortened URL</button>
|
||||
<button onclick="buttonClearLog()" id="buttonClearLog">Clear Log</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<textarea id="resultfeed" cols="50" class="resultfeed" readonly></textarea>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user