﻿extends layout

block content
  section.login-container
    div.message
      img.logo(src=baseURL + "/images/VorlonLogo_Smooth.svg", alt="Vorlon logo" )
      h1 We need your credentials :)
    
      //- submit to /login
      form(action="#{baseURL}/login", method="post")
        input(type="text", id="username", name="username", placeholder="Username")
        input(type="password", id="password", name="password", placeholder="Password")
        button(type="submit") Login
    
block scripts
