Docker containers running sample nodejs app among others tools for learning purposes.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

24 lines
1.1 KiB

<html>
<meta charset="UTF-8">
<body>
<div>
<h1>WELCOME</h1>
</div>
<div class="form-header" style="background-color:black; color:white; padding:20px; left:50%; ">
<h2 style="font-family: Verdana, Geneva, Tahoma, sans-serif">Authenticate thyself</h2>
</div>
<form method="post" action="http://localhost:3001/token" novalidate>
<div class="form-field" style="background-color:black; color:white; padding:20px; left:50%; ">
<label for="username">Username</label>
<input class="input" id="username" name="username" autofocus >
</div>
<div class="form-field" style="background-color:black; color:white; padding:20px; left:50%; ">
<label for="username">Password</label>
<input class="input" id="password" name="password" type="password" value="" />
</div>
<div class="form-actions" style="background-color:black; color:white; padding:20px; left:50%; ">
<button class="btn" type="submit">LOGIN</button>
</div>
</form>
</body>
</html>