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.

36 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Basic Login Form</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<link rel='stylesheet' href='https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css'>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Oxygen'><link rel="stylesheet" href="./style.css">
</head>
<body>
<link href="https://fonts.googleapis.com/css?family=Oxygen:400,300,700" rel="stylesheet" type="text/css"/>
<link href="https://code.ionicframework.com/ionicons/1.4.1/css/ionicons.min.css" rel="stylesheet" type="text/css"/>
<div class="signin cf">
<div class="avatar"></div>
<form>
<div class="inputrow">
<input type="text" id="name" placeholder="Username"/>
<label class="ion-person" for="name"></label>
</div>
<div class="inputrow">
<input type="password" id="pass" placeholder="Password"/>
<label class="ion-locked" for="pass"></label>
</div>
<input type="checkbox" name="remember" id="remember"/>
<label class="radio" for="remember">Stay Logged In</label>
<input type="submit" value="Login"/>
</form>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
</body>
</html>