Subversion Repository Public Repository

ChrisCompleteCodeTrunk

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
@using ActionTireCo.Crm.Model.Database
@model Customer

@using (Html.BeginForm("Add", "Customer", FormMethod.Post))
{
    <div class="modal fade" id="modalCustomer" tabindex="-1" role="dialog" aria-labelledby="modalCustomerLabel" aria-hidden="true" data-backdrop="static" data-keyboard="false">
        <div class="modal-dialog" role="document">
            <div class="modal-content">
                <div class="modal-header">
                    <h5 class="modal-title" id="modalLoginLabel">Add Prospect</h5>
                </div>
                <div class="modal-body">
                    <div class="form-group">
                        @Html.LabelFor(m => m.Name)
                        @Html.TextBoxFor(m => m.Name, new { @type = "text", @class = "form-control", @placeholder = "Prospect Name", @required = true })
                    </div>
                    <div class="form-group">
                        @Html.LabelFor(m => m.AddressLine1)
                        @Html.TextBoxFor(m => m.AddressLine1, new { @type = "text", @class = "form-control", @placeholder = "Address Line 1", @required = true })
                    </div>
                    <div class="form-group">
                        @Html.LabelFor(m => m.AddressLine2)
                        @Html.TextBoxFor(m => m.AddressLine2, new { @type = "text", @class = "form-control", @placeholder = "Address Line 1" })
                    </div>
                    <div class="form-group">
                        @Html.LabelFor(m => m.City)
                        @Html.TextBoxFor(m => m.City, new { @type = "text", @class = "form-control", @placeholder = "City", @required = true })
                    </div>
                    <div class="form-group">
                        @Html.LabelFor(m => m.State)
                        @Html.TextBoxFor(m => m.State, new { @type = "text", @class = "form-control", @placeholder = "State", @required = true })
                    </div>
                    <div class="form-group">
                        @Html.LabelFor(m => m.Zip)
                        @Html.TextBoxFor(m => m.Zip, new { @type = "text", @class = "form-control", @placeholder = "State", @required = true })
                    </div>
                    <div class="form-group">
                        @Html.LabelFor(m => m.Phone)
                        @Html.TextBoxFor(m => m.Phone, new { @type = "text", @class = "form-control", @placeholder = "State", @required = true })
                    </div>
                </div>
                <div class="modal-footer">
                    <button type="button" class="btn btn-primary" data-dismiss="modal">Cancel</button>
                    <button type="submit" class="btn btn-primary">Save Prospect</button>
                </div>
            </div>
        </div>
        @Html.HiddenFor(m => m.Id, new { @id = "customerId", @required = true })
    </div>
}

Commits for ChrisCompleteCodeTrunk/ActionTireCo/ActionTireCo.Crm/obj/Release/Package/PackageTmp/Views/Shared/Customer.cshtml

Diff revisions: vs.
Revision Author Commited Message
1 BBDSCHRIS picture BBDSCHRIS Wed 22 Aug, 2018 20:08:03 +0000