Auto stash before merge of "main" and "origin/main"
This commit is contained in:
14
views/auth/login.php
Normal file
14
views/auth/login.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php $content = function() { ?>
|
||||
<h2>Login</h2>
|
||||
<form action="/login" method="post">
|
||||
<div class="form-group">
|
||||
<label for="username">Username</label>
|
||||
<input type="text" class="form-control" id="username" name="username" required>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="password">Password</label>
|
||||
<input type="password" class="form-control" id="password" name="password" required>
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary">Login</button>
|
||||
</form>
|
||||
<?php }; include __DIR__ . '/../layouts/app.php'; ?>
|
||||
Reference in New Issue
Block a user