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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
@model CPE.App.Web.Models.ElucidatCourseView
@{
    ViewBag.Title = @Model.Name;
}
<div class="hidden meetingname">@Model.Name</div>
<script type="text/javascript" src="/static/js/index/login.js"></script>
<h2>&nbsp;</h2>
<hr />
<div id="session_info" style="width:700px;margin: 2px auto;">
    @if (!String.IsNullOrWhiteSpace(Model.Message))
    {
        <div id="elucidatlogin_msg" style="width: 700px; margin: 2px auto;">
            <h2 style="text-align: center">@Model.Message</h2>
        </div>
    }
    </div>
    <div id="loginbox">
        <div id="loginheader">
            Login
        </div>
        <div id="loginbody">
            @using (Html.BeginForm("Login", "Index", FormMethod.Post))
            {
                <table>
                    <tr>
                        <td>
                            First Name:
                        </td>
                        <td>
                            <input type="text" id="name" name="firstname" />
                        </td>
                    </tr>
                    <tr>
                        <td>
                            Last Name:
                        </td>
                        <td>
                            <input type="text" id="name" name="lastname" />
                        </td>
                    </tr>
                    <tr>
                        <td>
                            Email:
                        </td>
                        <td>
                            <input type="text" id="email" name="email" />
                        </td>
                    </tr>
                    <tr>
                        <td>
                            Password:
                        </td>
                        <td>
                            <input type="password" id="ticket" name="ticket" />
                        </td>
                    </tr>
                    <tr>
                        <td>
                            <input type="hidden" value=@Model.PurchaseDate name="purchaseDate" />
                        </td>
                    </tr>
                    <tr>
                        <td>
                            <input type="hidden" value=@Model.TicketFromUrl name="ticketFromUrl" />
                        </td>
                    </tr>
                    <tr>
                        <td>
                            <input type="hidden" value=@Model.Name name="courseName" />
                        </td>
                    </tr>
                    <tr><td colspan="2"><hr style="margin: 5px 0;" /></td></tr>
                    <tr>
                        <td></td>
                        <td>
                            <input type="submit" value="Enter Course" />
                        </td>
                    </tr>
                </table>
            }
        </div>
    </div>

Commits for CPE_learningsite/CPE/CPE.App/CPE.App.Web/Views/Index/elucidatlogin.cshtml

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

initial commit