-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from sawest/master
Updated code for 6.0.2
- Loading branch information
Showing
10 changed files
with
67 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,32 @@ | ||
<%@ Control language="vb" Inherits="DotNetNuke.Authentication.ActiveDirectory.Login, DotNetNuke.Authentication.ActiveDirectory" AutoEventWireup="false" Explicit="True" Codebehind="Login.ascx.vb" %> | ||
<%@ Register TagPrefix="dnn" Assembly="DotNetNuke" Namespace="DotNetNuke.UI.WebControls"%> | ||
<%@ Control Language="vb" Inherits="DotNetNuke.Authentication.ActiveDirectory.Login, DotNetNuke.Authentication.ActiveDirectory" AutoEventWireup="false" Explicit="True" CodeBehind="Login.ascx.vb" %> | ||
<%@ Register TagPrefix="dnn" Assembly="DotNetNuke" Namespace="DotNetNuke.UI.WebControls" %> | ||
<%@ Register TagPrefix="dnn" TagName="Label" Src="~/controls/LabelControl.ascx" %> | ||
<div class="dnnForm dnnLoginService dnnClear"> | ||
<div class="dnnFormItem"> | ||
<asp:label id="plUsername" AssociatedControlID="txtUsername" runat="server" resourcekey="Username" CssClass="dnnFormLabel" /> | ||
<asp:textbox id="txtUsername" runat="server" /> | ||
<div class="dnnForm dnnLoginService dnnClear" style="margin-top: 15px;"> | ||
<div class="dnnFormItem"> | ||
<asp:Label ID="plUsername" AssociatedControlID="txtUsername" runat="server" resourcekey="Username" CssClass="dnnFormLabel" /> | ||
<asp:TextBox ID="txtUsername" runat="server" onkeydown="return checkEnter(event)" /> | ||
</div> | ||
<div class="dnnFormItem"> | ||
<asp:Label ID="plPassword" AssociatedControlID="txtPassword" runat="server" resourcekey="Password" CssClass="dnnFormLabel" /> | ||
<asp:TextBox ID="txtPassword" TextMode="Password" runat="server" onkeydown="return checkEnter(event)" /> | ||
</div> | ||
|
||
<div class="dnnFormItem" id="divCaptcha1" runat="server" visible="false"> | ||
<asp:Label ID="plCaptcha" AssociatedControlID="ctlCaptcha" runat="server" resourcekey="Captcha" CssClass="dnnFormLabel" /> | ||
</div> | ||
<div class="dnnFormItem" id="divCaptcha2" runat="server" visible="false"> | ||
<dnn:captchacontrol id="ctlCaptcha" captchawidth="130" captchaheight="40" runat="server" errorstyle-cssclass="dnnFormMessage dnnFormError" /> | ||
</div> | ||
<div class="dnnFormItem"> | ||
<label class="dnnFormLabel" ></label> | ||
<asp:LinkButton ID="cmdLogin" resourcekey="cmdLogin" CssClass="dnnPrimaryAction" Text="Login" runat="server" ClientIDMode="Static" /> | ||
</div> | ||
</div> | ||
<div class="dnnFormItem"> | ||
<asp:label id="plPassword" AssociatedControlID="txtPassword" runat="server" resourcekey="Password" CssClass="dnnFormLabel" /> | ||
<asp:textbox id="txtPassword" textmode="Password" runat="server" /> | ||
</div> | ||
<div class="dnnFormItem" id="divCaptcha1" runat="server" visible="false"> | ||
<asp:label id="plCaptcha" AssociatedControlID="ctlCaptcha" runat="server" resourcekey="Captcha" CssClass="dnnFormLabel" /> | ||
</div> | ||
<div class="dnnFormItem" id="divCaptcha2" runat="server" visible="false"> | ||
<dnn:captchacontrol id="ctlCaptcha" captchawidth="130" captchaheight="40" runat="server" errorstyle-cssclass="dnnFormMessage dnnFormError" /> | ||
</div> | ||
<p><asp:LinkButton id="cmdLogin" resourcekey="cmdLogin" cssclass="dnnPrimaryAction" text="Login" runat="server" /></p> | ||
</div> | ||
|
||
<script> | ||
function checkEnter(e) { | ||
if (e.keyCode == 13) { | ||
$("#cmdLogin")[0].click(); | ||
} | ||
} | ||
</script> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
6.0.0.22 | ||
6.0.2.29 |