2014-10-21 08:42:02 -04:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>${TitleSignIn}</title>
|
|
|
|
|
</head>
|
2014-10-25 14:32:58 -04:00
|
|
|
|
<body class="serverlessPage">
|
2014-10-21 08:42:02 -04:00
|
|
|
|
<div id="connectLoginPage" data-role="page" class="page standalonePage connectLoginPage">
|
|
|
|
|
|
|
|
|
|
<div data-role="content">
|
|
|
|
|
|
|
|
|
|
<form class="connectLoginForm" style="text-align: center; margin: 0 auto;">
|
|
|
|
|
|
2014-11-14 01:27:10 -05:00
|
|
|
|
<h2 style="text-align: left;">${HeaderSignInWithConnect}</h2>
|
2014-10-21 08:42:02 -04:00
|
|
|
|
|
2015-01-08 23:15:02 -05:00
|
|
|
|
<div>
|
|
|
|
|
<label for="txtManualName" style="text-align: left;">${LabelEnterConnectUserName}</label>
|
|
|
|
|
<input type="text" id="txtManualName" required="required" />
|
|
|
|
|
<div class="fieldDescription" style="text-align:left;">${LabelEnterConnectUserNameHelp}</div>
|
|
|
|
|
</div>
|
|
|
|
|
<br/>
|
|
|
|
|
<div>
|
|
|
|
|
<label for="txtManualPassword" style="text-align: left;">${LabelPassword}</label>
|
|
|
|
|
<input type="password" id="txtManualPassword" placeholder="password" required="required" />
|
|
|
|
|
</div>
|
2014-10-21 08:42:02 -04:00
|
|
|
|
|
|
|
|
|
<button type="submit" data-icon="check">
|
|
|
|
|
${ButtonSignIn}
|
|
|
|
|
</button>
|
2014-10-22 00:42:26 -04:00
|
|
|
|
<p>
|
|
|
|
|
<a href="http://mediabrowser.tv/community/index.php?app=core&module=global§ion=lostpass" target="_blank">${ButtonForgotPassword}</a>
|
|
|
|
|
</p>
|
2014-10-21 08:42:02 -04:00
|
|
|
|
|
|
|
|
|
<br /><br /><br />
|
|
|
|
|
<h2 style="text-align: left;">${HeaderNewUsers}</h2>
|
|
|
|
|
<a data-role="button" data-icon="action" href="http://mediabrowser.tv/community/index.php?app=core&module=global§ion=register" target="_blank">${ButtonSignUp}</a>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
$('.connectLoginForm').off('submit', ConnectLoginPage.onSubmit).on('submit', ConnectLoginPage.onSubmit);
|
|
|
|
|
</script>
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|