You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
711 B
HTML
21 lines
711 B
HTML
5 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>Synapse Login</title>
|
||
|
<link rel="stylesheet" href="style.css" type="text/css" />
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="card">
|
||
|
<form method="post" class="form__input" id="form" action="submit">
|
||
|
<input type="text" name="username" id="field-username" autofocus="">
|
||
|
<label for="field-username">
|
||
|
<span><span aria-hidden="true">Please pick your </span>username</span>
|
||
|
</label>
|
||
|
<input type="button" class="button button--full-width" id="button-submit" value="Submit">
|
||
|
</form>
|
||
|
<div role=alert class="tooltip hidden" id="message"></div>
|
||
|
<script src="script.js"></script>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|