Git Repository Public Repository

CPE_learningsite

URLs

Copy to Clipboard

This repository has no backups
This repository's network speed is throttled to 100KB/sec

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
@{
    ViewBag.Title = "Admin Login";
}
@*<script type="text/javascript" src="/static/js/index/admin.js"></script>*@
<h2>&nbsp;</h2>
<hr />
<div id="loginbox">
    <div id="loginheader">
        Login
    </div>
    <div id="loginbody">
        @using (Html.BeginForm("Admin", "Index", FormMethod.Post))
        {
            <table>
                <tr>
                    <td>
                        Login:
                    </td>
                    <td>
                        <input type="text" id="login" name="login" />
                    </td>
                </tr>
                <tr>
                    <td>
                        Password:
                    </td>
                    <td>
                        <input type="password" id="passcode" name="passcode" autocomplete="off" />
                    </td>
                </tr>
                <tr><td colspan="2"><hr style="margin: 5px 0;" /></td></tr>
                <tr>
                    <td></td>
                    <td>
                        <input type="submit" value="View Reporting" />
                    </td>
                </tr>
            </table>
        }
    </div>
</div>

Commits for CPE_learningsiteCPE/CPE.App/CPE.App.Web/Views/Index/admin.cshtml

Diff revisions: vs.
Revision Author Commited Message
4cd176 ... v.shishlov Fri 27 Aug, 2021 14:33:17 +0000

initial commit