Skip to content
This repository has been archived by the owner on Dec 14, 2017. It is now read-only.

Removed unused Angular references #256

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@
<fieldset>
<div class="form-group">
<label for="username">Email address</label>
<input required name="username" data-mailcheckfield=".email-suggestion" autofocus id="username" type="text" ng-model="model.username" class="form-control" placeholder="Username" value="@Model.Username" maxlength="100" @(ViewBag.DisableUserNameChange == true ? "readonly='readonly'" : "")>
<input required name="username" data-mailcheckfield=".email-suggestion" autofocus id="username" type="text" class="form-control" placeholder="Username" value="@Model.Username" maxlength="100" @(ViewBag.DisableUserNameChange == true ? "readonly='readonly'" : "")>
</div>
<div class="form-group">
<label for="password">Password</label>
<input required id="password" name="password" type="password" class="form-control" placeholder="Password" ng-model="model.password" maxlength="100" autocomplete="off">
<input required id="password" name="password" type="password" class="form-control" placeholder="Password" maxlength="100" autocomplete="off">
</div>
@if (Model.AllowRememberMe)
{
Expand All @@ -45,7 +45,7 @@
</div>
}
<div class="form-group">
<button class="btn btn-primary" id="login" ng-disabled="form.$invalid">Login</button>
<button class="btn btn-primary" id="login">Login</button>
</div>
</fieldset>
</form>
Expand Down Expand Up @@ -83,7 +83,3 @@
</div>
}
</div>

@section scripts{
@Html.Partial("_RenderAngularModel")
}