grocy/views/login.blade.php
2018-04-14 11:10:38 +02:00

31 lines
786 B
PHP

@extends('layout.default')
@section('title', 'Login')
@section('viewJsName', 'login')
@section('content')
<div class="col-md-4 col-md-offset-5">
<h1 class="page-header text-center">Login</h1>
<form method="post" action="/login" id="login-form">
<div class="form-group">
<label for="name">Username</label>
<input type="text" class="form-control" required id="username" name="username">
<div class="help-block with-errors"></div>
</div>
<div class="form-group">
<label for="name">Password</label>
<input type="password" class="form-control" required id="password" name="password">
<div id="login-error" class="help-block with-errors"></div>
</div>
<button id="login-button" type="submit" class="btn btn-default">Login</button>
</form>
</div>
@stop