mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-10 07:30:26 +00:00
258 lines
14 KiB
HTML
258 lines
14 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<!-- BEGIN HEAD -->
|
|
<head>
|
|
{% block head %}
|
|
<meta charset="utf-8">
|
|
{% block title %}<title>DNS Control Panel</title>{% endblock %}
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta content="width=device-width, initial-scale=1" name="viewport">
|
|
<meta content="" name="description">
|
|
<meta content="" name="author">
|
|
|
|
<!-- BEGIN GLOBAL MANDATORY STYLES -->
|
|
<link href="//fonts.googleapis.com/css?family=Open+Sans:400,300,600,700&subset=all" rel="stylesheet" type="text/css"/>
|
|
<link href='//fonts.googleapis.com/css?family=Roboto+Mono:400,300,700' rel='stylesheet' type='text/css'>
|
|
<link href="{{ url_for('static', filename='global/plugins/font-awesome/css/font-awesome.min.css') }}" rel="stylesheet" type="text/css"/>
|
|
<link href="{{ url_for('static', filename='global/plugins/simple-line-icons/simple-line-icons.min.css') }}" rel="stylesheet" type="text/css"/>
|
|
<link href="{{ url_for('static', filename='global/plugins/bootstrap/css/bootstrap.min.css') }}" rel="stylesheet" type="text/css"/>
|
|
<link href="{{ url_for('static', filename='global/plugins/uniform/css/uniform.default.css') }}" rel="stylesheet" type="text/css"/>
|
|
<link href="{{ url_for('static', filename='global/plugins/bootstrap-switch/css/bootstrap-switch.min.css') }}" rel="stylesheet" type="text/css"/>
|
|
<link rel="shortcut icon" href="{{ url_for('static', filename='global/img/favicon.ico') }}" type="image/x-icon" />
|
|
<!-- END GLOBAL MANDATORY STYLES -->
|
|
{% endblock %}
|
|
</head>
|
|
<!-- END HEAD -->
|
|
<body class="page-md page-boxed page-header-fixed page-sidebar-closed-hide-logo page-container-bg-solid page-sidebar-closed-hide-logo">
|
|
<!-- BEGIN HEADER -->
|
|
{% block pageheader %}
|
|
<div class="page-header md-shadow-z-1-i navbar navbar-fixed-top">
|
|
<!-- BEGIN HEADER INNER -->
|
|
<div class="page-header-inner container">
|
|
<!-- BEGIN LOGO -->
|
|
<div class="page-logo">
|
|
<a href="{{ url_for('index') }}">
|
|
<img src="{{ url_for('static', filename='global/img/be-logo.png') }}" alt="logo" class="logo-default" height="70%" width="70%" />
|
|
</a>
|
|
<div class="menu-toggler sidebar-toggler">
|
|
<!-- DOC: Remove the above "hide" to enable the sidebar toggler button on header -->
|
|
</div>
|
|
</div>
|
|
<!-- END LOGO -->
|
|
<!-- BEGIN RESPONSIVE MENU TOGGLER -->
|
|
<a href="javascript:;" class="menu-toggler responsive-toggler" data-toggle="collapse" data-target=".navbar-collapse">
|
|
</a>
|
|
<!-- END RESPONSIVE MENU TOGGLER -->
|
|
|
|
<!-- BEGIN PAGE TOP -->
|
|
<div class="page-top">
|
|
<!-- BEGIN HEADER SEARCH BOX -->
|
|
<!-- DOC: Apply "search-form-expanded" right after the "search-form" class to have half expanded search box -->
|
|
<form class="search-form search-form-expanded" action="search" method="GET">
|
|
<div class="input-group">
|
|
<input type="text" class="form-control" placeholder="Search..." name="query">
|
|
<span class="input-group-btn">
|
|
<a href="javascript:;" class="btn submit"><i class="icon-magnifier"></i></a>
|
|
</span>
|
|
</div>
|
|
</form>
|
|
<!-- END HEADER SEARCH BOX -->
|
|
<!-- BEGIN TOP NAVIGATION MENU -->
|
|
<div class="top-menu">
|
|
<ul class="nav navbar-nav pull-right">
|
|
{% block pageheader_userinfo %}
|
|
<!-- BEGIN NOTIFICATION DROPDOWN -->
|
|
<!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte -->
|
|
<!--
|
|
<li class="dropdown dropdown-extended dropdown-notification" id="header_notification_bar">
|
|
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true">
|
|
<i class="icon-bell"></i>
|
|
<span class="badge badge-default">
|
|
7 </span>
|
|
</a>
|
|
<ul class="dropdown-menu">
|
|
<li class="external">
|
|
<h3><span class="bold">12 pending</span> notifications</h3>
|
|
<a href="extra_profile.html">view all</a>
|
|
</li>
|
|
<li>
|
|
<ul class="dropdown-menu-list scroller" style="height: 250px;" data-handle-color="#637283">
|
|
<li>
|
|
<a href="javascript:;">
|
|
<span class="time">just now</span>
|
|
<span class="details">
|
|
<span class="label label-sm label-icon label-success">
|
|
<i class="fa fa-plus"></i>
|
|
</span>
|
|
New user registered. </span>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
-->
|
|
<!-- END NOTIFICATION DROPDOWN -->
|
|
{% if current_user.username != 'Anonymous' %}
|
|
<!-- BEGIN USER LOGIN DROPDOWN -->
|
|
<!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte -->
|
|
<li class="dropdown dropdown-user">
|
|
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true">
|
|
{% if current_user.avatar %}
|
|
<img alt="" class="img-circle" src="{{ url_for('user_avatar', filename=current_user.avatar) }}"/>
|
|
{% else %}
|
|
<img alt="" class="img-circle" src="{{ url_for('static', filename='admin/layout2/img/avatar.png') }}"/>
|
|
{% endif %}
|
|
<span class="username username-hide-on-mobile">
|
|
{% if current_user.is_authenticated() %} {{ current_user.firstname }} {% endif %}</span>
|
|
<i class="fa fa-angle-down"></i>
|
|
</a>
|
|
<ul class="dropdown-menu dropdown-menu-default">
|
|
<li>
|
|
<a href="{{ url_for('user_profile') }}">
|
|
<i class="icon-user"></i> My Profile </a>
|
|
</li>
|
|
<li class="divider">
|
|
</li>
|
|
<li>
|
|
<a href="{{ url_for('logout') }}">
|
|
<i class="icon-key"></i> Log Out </a>
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
<!-- END USER LOGIN DROPDOWN -->
|
|
{% endif %}
|
|
{% endblock %}
|
|
</ul>
|
|
</div>
|
|
<!-- END TOP NAVIGATION MENU -->
|
|
</div>
|
|
<!-- END PAGE TOP -->
|
|
</div>
|
|
<!-- END HEADER INNER -->
|
|
</div>
|
|
|
|
{% endblock %}
|
|
<!-- END HEADER -->
|
|
|
|
<div class="clearfix">
|
|
</div>
|
|
|
|
<!-- BEGIN PAGE CONTAINER -->
|
|
{% block pagecontainer %}
|
|
<!-- BEGIN CONTAINER -->
|
|
<div class="container">
|
|
<div class="page-container">
|
|
<!-- BEGIN SIDEBAR -->
|
|
<div class="page-sidebar-wrapper">
|
|
<!-- DOC: Set data-auto-scroll="false" to disable the sidebar from auto scrolling/focusing -->
|
|
<!-- DOC: Change data-auto-speed="200" to adjust the sub menu slide up/down speed -->
|
|
<div class="page-sidebar navbar-collapse collapse">
|
|
<!-- BEGIN SIDEBAR MENU -->
|
|
<!-- DOC: Apply "page-sidebar-menu-light" class right after "page-sidebar-menu" to enable light sidebar menu style(without borders) -->
|
|
<!-- DOC: Apply "page-sidebar-menu-hover-submenu" class right after "page-sidebar-menu" to enable hoverable(hover vs accordion) sub menu mode -->
|
|
<!-- DOC: Apply "page-sidebar-menu-closed" class right after "page-sidebar-menu" to collapse("page-sidebar-closed" class must be applied to the body element) the sidebar sub menu mode -->
|
|
<!-- DOC: Set data-auto-scroll="false" to disable the sidebar from auto scrolling/focusing -->
|
|
<!-- DOC: Set data-keep-expand="true" to keep the submenues expanded -->
|
|
<!-- DOC: Set data-auto-speed="200" to adjust the sub menu slide up/down speed -->
|
|
<ul class="page-sidebar-menu page-sidebar-menu-hover-submenu " data-keep-expanded="false" data-auto-scroll="true" data-slide-speed="200">
|
|
{% if current_user.username != 'Anonymous' %}
|
|
<li {% if request.path == "/dashboard" %}class="start active"{% endif %}>
|
|
<a href="{{ url_for('dashboard') }}">
|
|
<i class="icon-home"></i>
|
|
<span class="title">Dashboard</span>
|
|
{% if request.path == "/dashboard" %}<span class="selected"></span> {% endif %}
|
|
<span class="selected"></span>
|
|
</a>
|
|
</li>
|
|
{% if current_user.role.name == 'Administrator' %}
|
|
<li {% if request.path.startswith('/admin') %}class="start active"{% endif %}>
|
|
<a href="{{ url_for('admin') }}">
|
|
<i class="icon-settings"></i>
|
|
<span class="title">Admin</span>
|
|
<span class="arrow "></span>
|
|
{% if request.path.startswith('/admin') %}<span class="selected"></span> {% endif %}
|
|
</a>
|
|
<ul class="sub-menu">
|
|
<li>
|
|
<a href="{{ url_for('admin') }}">
|
|
<i class="icon-eye"></i>
|
|
Admin Console</a>
|
|
</li>
|
|
<li>
|
|
<a href="{{ url_for('dashboard') }}">
|
|
<i class="icon-globe"></i>
|
|
Manage Domain</a>
|
|
</li>
|
|
<li>
|
|
<a href="{{ url_for('admin_manageuser') }}">
|
|
<i class="icon-user"></i>
|
|
Manage User</a>
|
|
</li>
|
|
<li>
|
|
<a href="{{ url_for('admin_history') }}">
|
|
<i class="icon-speedometer"></i>
|
|
History</a>
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
{% endif %}
|
|
{% endif %}
|
|
</ul>
|
|
<!-- END SIDEBAR MENU -->
|
|
</div>
|
|
</div>
|
|
<!-- END SIDEBAR -->
|
|
<!-- BEGIN CONTENT -->
|
|
<div class="page-content-wrapper">
|
|
<div class="page-content">
|
|
{% block dashboard_stat %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- END CONTENT -->
|
|
<!-- BEGIN QUICK SIDEBAR -->
|
|
<!--Cooming Soon...-->
|
|
<!-- END QUICK SIDEBAR -->
|
|
</div>
|
|
<!-- END CONTAINER -->
|
|
</div>
|
|
{% endblock %}
|
|
|
|
<!-- BEGIN FOOTER -->
|
|
<div class="page-footer">
|
|
<div class="container">
|
|
2015 © <a href="http://duykhanh.me">Khanh Ngo</a>
|
|
</div>
|
|
</div>
|
|
<!-- END FOOTER -->
|
|
|
|
<div class="scroll-to-top">
|
|
<i class="icon-arrow-up"></i>
|
|
</div>
|
|
|
|
{% block scripts %}
|
|
<!-- BEGIN JAVASCRIPTS(Load javascripts at bottom, this will reduce page load time) -->
|
|
<!-- BEGIN CORE PLUGINS -->
|
|
<script src="{{ url_for('static', filename='global/plugins/jquery.min.js') }}" type="text/javascript"></script>
|
|
<script src="{{ url_for('static', filename='global/plugins/jquery-migrate.min.js') }}" type="text/javascript"></script>
|
|
<!-- IMPORTANT! Load jquery-ui.min.js before bootstrap.min.js to fix bootstrap tooltip conflict with jquery ui tooltip -->
|
|
<script src="{{ url_for('static', filename='global/plugins/jquery-ui/jquery-ui.min.js') }}" type="text/javascript"></script>
|
|
<script src="{{ url_for('static', filename='global/plugins/bootstrap/js/bootstrap.min.js') }}" type="text/javascript"></script>
|
|
<script src="{{ url_for('static', filename='global/plugins/bootstrap-hover-dropdown/bootstrap-hover-dropdown.min.js') }}" type="text/javascript"></script>
|
|
<script src="{{ url_for('static', filename='global/plugins/jquery-slimscroll/jquery.slimscroll.min.js') }}" type="text/javascript"></script>
|
|
<script src="{{ url_for('static', filename='global/plugins/jquery.blockui.min.js') }}" type="text/javascript"></script>
|
|
<script src="{{ url_for('static', filename='global/plugins/jquery.cokie.min.js') }}" type="text/javascript"></script>
|
|
<script src="{{ url_for('static', filename='global/plugins/uniform/jquery.uniform.min.js') }}" type="text/javascript"></script>
|
|
<script src="{{ url_for('static', filename='global/plugins/bootstrap-switch/js/bootstrap-switch.min.js') }}" type="text/javascript"></script>
|
|
<!-- END CORE PLUGINS -->
|
|
{% endblock %}
|
|
|
|
</body>
|
|
</html>
|