summaryrefslogtreecommitdiffstats
path: root/app/view/auth/default.view.php
blob: 9bb1c4760f6757ae16c55637ba6303627b831ecd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>

<html lang="en">
    <head>
        <?php include "view/common/head.view.php"; ?>
        <title>Scrott - Login</title>
    </head>

    <body>
        <?php include "view/common/topp.view.php"; ?>

        <div class="container">
            <div class="row">
                <div class="col-md-4"></div>

                <div class="col-md-4">
                    <div class="panel panel-default">
                        <div class="panel-body text-center">
                            <form method="post" action="<?=$mod->ap()?>">
                                <input type="hidden" name="input[action]" value="login" />
                                <h1>Login</h1>

                                <div class="form-group">
                                    <label for="inputUsername">Username</label>
                                    <input type="text" name="input[username]" id="inputUsername" class="form-control" required="true" />
                                </div>

                                <div class="form-group">
                                    <label for="inputPassword">Password</label>
                                    <input type="password" name="input[password]" id="inputPassword" class="form-control" />
                                </div>

                                <button type="submit" class="btn btn-success pull-right">
                                    Login <span class="glyphicon glyphicon-log-in"></span>
                                </button>
                            </form>
                        </div>
                    </div>
                </div>

                <div class="col-md-4"></div>
            </div>
        </div>

        <?php include "view/common/foot.view.php"; ?>
    </body>
</html>