mirror of
https://github.com/rad1o/server.git
synced 2026-02-19 19:11:20 +01:00
28 lines
849 B
HTML
28 lines
849 B
HTML
<!DOCTYPE html>
|
|
<% var pageTitle = 'choose challenge'; %>
|
|
<html>
|
|
<% include head.html %>
|
|
|
|
<body>
|
|
|
|
<div id="challengechooser_dialog" class="mdl-layout mdl-js-layout mdl-layout--overlay-drawer-button">
|
|
<% include header_nav.html %>
|
|
|
|
<main class="mdl-layout__content content">
|
|
<form action="/challenge" method="get" name="challenge_chooser">
|
|
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
|
|
<input class="mdl-textfield__input" type="text" name="challengeid" />
|
|
<label class="mdl-textfield__label" for="challengeid">challenge id</label>
|
|
</div>
|
|
<div style="margin-top: 2em;">
|
|
<input class="mdl-button mdl-js-button mdl-button--raised mdl-button--accent mdl-js-ripple-effect"
|
|
type="submit" id="challenge_send" value="open challenge" />
|
|
</div>
|
|
</form>
|
|
</main>
|
|
</div>
|
|
|
|
|
|
</body>
|
|
|
|
</html> |