@(systemSettings: service.SystemSettingsService.SystemSettings)(implicit context: app.Context) @import context._ @main("Sign in"){ <form action="@path/signin" method="POST" validate="true"> <label for="userName">Username</label> <input type="text" name="userName" id="userName"/> <span id="error-userName" class="error"></span> <label for="password">Password</label> <input type="password" name="password" id="password"/> <span id="error-password" class="error"></span> <div> <input type="submit" class="btn btn-success" value="Sign in"/> @if(systemSettings.allowAccountRegistration){ <a href="@path/register" class="btn">Create new account</a> } </div> </form> }