abtmtr-v13/views/pages/resumeEntry.ejs

27 lines
No EOL
820 B
Text

<!DOCTYPE html>
<html>
<%- include("../components/page-head.ejs") %>
<body>
<main>
<h1>resume</h1>
<p>my job history, in general.</p>
<h2>enter a key</h2>
<p>you are attempting to access my resume.<br />
this information is key-protected and will remain that way for some amount of time.</p>
<form action="/resume" method="get">
<p>
<label for="key">Key:</label>
<input type="password" name="key" id="key" />
</p>
<p>
<input type="submit" value="Test Access" />
</p>
<% if (badError) { %>
<p style="opacity: 0.5;">ERROR: incorrect key.</p>
<% } %>
</form>
</main>
<%- include("../components/footer.ejs") %>
<%- include("../components/post-main.ejs") %>
</body>
</html>