Skip to content

Instantly share code, notes, and snippets.

@GeorgeFlorian
Last active February 21, 2019 14:09
Show Gist options
  • Save GeorgeFlorian/d52ed6fb10e4beaf8f64ef5edef2a78b to your computer and use it in GitHub Desktop.
Save GeorgeFlorian/d52ed6fb10e4beaf8f64ef5edef2a78b to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset = "utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login Form</title>
<link rel = "stylesheet" type = "text/css" href = "login.css">
</head>
<body>
<div class="login-box">
<form method="post" action="/login">
<div class = "box-head">
<div class = "logo"><img url="logo.png"></div>
<div class = "network-title"><h1>Network Login</h1></div>
</div>
<div class ="textbox">
<input type="text" placeholder="Network Name" name="networkName" value="">
</div>
<div class="textbox">
<input type="password" placeholder="Password" name="networkPassword" value="">
</div>
<input class="button" type="submit" name="" value="Sign in">
<input class="button" type="button" name="" value="Restart">
</form>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment