31 lines
895 B
JavaScript
31 lines
895 B
JavaScript
<html>
|
|
<head>
|
|
<title>Connected RP: Login</title>
|
|
<style type="text/css" rel="stylesheet">
|
|
.input-box
|
|
{
|
|
font-family: 'Roboto';
|
|
font-size: 14px;
|
|
border-style: solid;
|
|
border-colour: #0066AA;
|
|
border-radius: 2px;
|
|
color: #0066AA;
|
|
}
|
|
|
|
.button
|
|
{
|
|
font-family: "Roboto";
|
|
font-size: 14px;
|
|
border-style: solid;
|
|
border-colour: #0066AA;
|
|
border-radius: 2px;
|
|
color: #0066AA;
|
|
};
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<img src="server-logo.png" />
|
|
<input type="password" placeholder="Password" id="login_input_password" />
|
|
<button class="button" id="login_input_submit">LOGIN</button>
|
|
</body>
|
|
</html> |