forked from BlogEngine/BlogEngine.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccount.master
More file actions
37 lines (36 loc) · 1.78 KB
/
account.master
File metadata and controls
37 lines (36 loc) · 1.78 KB
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
<%@ Master Language="C#" AutoEventWireup="true" Inherits="Account.AccountMasterPage" CodeBehind="account.master.cs" %>
<%@ Import Namespace="BlogEngine.Core" %>
<!DOCTYPE html>
<html lang="en">
<head id="Head1" runat="server">
<title>Account Login</title>
<meta name="description" content="Account Login Membership User Password" />
<link href='http://fonts.googleapis.com/css?family=Roboto:400,500' rel='stylesheet' type='text/css'>
<link href="account.css" rel="stylesheet" />
<script src="../Scripts/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="account.js"></script>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<asp:ContentPlaceHolder ID="HeadContent" runat="server"></asp:ContentPlaceHolder>
</head>
<body class="<%=Resources.labels.LangDirection %>">
<form id="Form1" runat="server">
<div class="account">
<div class="account-header text-center">
<a href="https://blogengine.io/" target="_blank">
<img alt="BlogEngine.NET" src="../Content/images/blog/logo.png" /></a>
</div>
<div id="StatusBox">
<div id="AdminStatus" runat="server" style="display: none"></div>
</div>
<div class="account-box">
<asp:ContentPlaceHolder ID="MainContent" runat="server" />
</div>
</div>
</form>
</body>
</html>