mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-10 07:30:26 +00:00
143 lines
8.3 KiB
HTML
143 lines
8.3 KiB
HTML
|
{% extends "base.html" %}
|
||
|
{% block head %}
|
||
|
{{ super() }}
|
||
|
<!-- BEGIN PAGE LEVEL PLUGIN STYLES -->
|
||
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='global/plugins/select2/select2.css') }}"/>
|
||
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='global/plugins/datatables/plugins/bootstrap/dataTables.bootstrap.css') }}"/>
|
||
|
<!-- END PAGE LEVEL PLUGIN STYLES -->
|
||
|
|
||
|
<!-- BEGIN THEME STYLES -->
|
||
|
<!-- DOC: To use 'rounded corners' style just load 'components-rounded.css' stylesheet instead of 'components.css' in the below style tag -->
|
||
|
<link href="{{ url_for('static', filename='global/css/components-md.css') }}" id="style_components" rel="stylesheet" type="text/css"/>
|
||
|
<link href="{{ url_for('static', filename='global/css/plugins-md.css') }}" rel="stylesheet" type="text/css"/>
|
||
|
<link href="{{ url_for('static', filename='admin/layout2/css/layout.css') }}" rel="stylesheet" type="text/css"/>
|
||
|
<link href="{{ url_for('static', filename='admin/layout2/css/themes/grey.css') }}" rel="stylesheet" type="text/css" id="style_color"/>
|
||
|
<link href="{{ url_for('static', filename='admin/layout2/css/custom.css') }}" rel="stylesheet" type="text/css"/>
|
||
|
<!-- END THEME STYLES -->
|
||
|
{% endblock %}
|
||
|
{% block title %}<title>DNS Control Panel - Add Domain</title>{% endblock %}
|
||
|
|
||
|
{% block dashboard_stat %}
|
||
|
<!-- BEGIN PAGE HEADER-->
|
||
|
<h3 class="page-title">
|
||
|
Add Domain</h3>
|
||
|
<div class="page-bar">
|
||
|
<ul class="page-breadcrumb">
|
||
|
<li>
|
||
|
<i class="fa fa-home"></i>
|
||
|
<a href="/">Home</a>
|
||
|
<i class="fa fa-angle-right"></i>
|
||
|
</li>
|
||
|
<li>
|
||
|
<a href="{{ url_for('dashboard') }}">Domain</a>
|
||
|
<i class="fa fa-angle-right"></i>
|
||
|
</li>
|
||
|
<li>
|
||
|
Add
|
||
|
</li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
<!-- END PAGE HEADER-->
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<div class="clearfix">
|
||
|
</div>
|
||
|
|
||
|
<div class="row">
|
||
|
<div class="col-md-12">
|
||
|
<!-- BEGIN ADD RECORD FORM-->
|
||
|
<div class="portlet light">
|
||
|
<div class="portlet-title">
|
||
|
<div class="caption font-green-haze">
|
||
|
<i class="icon-settings font-green-haze"></i>
|
||
|
<span class="caption-subject bold uppercase"> New Zone Information</span>
|
||
|
</div>
|
||
|
<div class="actions">
|
||
|
<a class="btn btn-circle btn-icon-only btn-default fullscreen" href="javascript:;" data-original-title="" title="">
|
||
|
</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="portlet-body form">
|
||
|
<form role="form" action="{{ url_for('domain_add') }}" method="post">
|
||
|
<div class="form-body">
|
||
|
<div class="form-group form-md-line-input form-md-floating-label has-success">
|
||
|
<input type="text" class="form-control" id="domain_name" name="domain_name">
|
||
|
<label for="domain_name">Enter a valid domain name (required)</label>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form-group form-md-radios">
|
||
|
<label>Type</label>
|
||
|
<div class="md-radio-inline">
|
||
|
<div class="md-radio">
|
||
|
<input type="radio" id="radio_type_native" name="radio_type" class="md-radiobtn" value="native" checked="" onclick="javascript:zoneTypeSelection();">
|
||
|
<label for="radio_type_native">
|
||
|
<span class="inc"></span>
|
||
|
<span class="check"></span>
|
||
|
<span class="box"></span>
|
||
|
Native</label>
|
||
|
</div>
|
||
|
<div class="md-radio has-error">
|
||
|
<input type="radio" id="radio_type_master" name="radio_type" class="md-radiobtn" value="master" onclick="javascript:zoneTypeSelection();">
|
||
|
<label for="radio_type_master">
|
||
|
<span class="inc"></span>
|
||
|
<span class="check"></span>
|
||
|
<span class="box"></span>
|
||
|
Master</label>
|
||
|
</div>
|
||
|
<div class="md-radio has-info">
|
||
|
<input type="radio" id="radio_type_slave" name="radio_type" class="md-radiobtn" value="slave" onclick="javascript:zoneTypeSelection();">
|
||
|
<label for="radio_type_slave">
|
||
|
<span class="inc"></span>
|
||
|
<span class="check"></span>
|
||
|
<span class="box"></span>
|
||
|
Slave</label>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form-body" id="form_master_ip" style="display:none">
|
||
|
<div class="form-group form-md-line-input form-md-floating-label has-success">
|
||
|
<input type="text" class="form-control" id="domain_master_address" name="domain_master_address">
|
||
|
<label for="domain_master_address">Enter valid master ip addresses (separated by commas)</label>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form-actions">
|
||
|
<div class="row">
|
||
|
<div class="col-md-offset-1">
|
||
|
<button type="submit" class="btn blue">Submit</button>
|
||
|
<button type="button" class="btn grey" onclick="window.location.href='{{ url_for('dashboard') }}'">Cancel</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!-- END ADD RECORD FORM-->
|
||
|
</div>
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block scripts %}
|
||
|
{{ super() }}
|
||
|
<!-- BEGIN PAGE LEVEL SCRIPTS -->
|
||
|
<script src="{{ url_for('static', filename='global/scripts/metronic.js') }}" type="text/javascript"></script>
|
||
|
<script src="{{ url_for('static', filename='admin/layout2/scripts/layout.js') }}" type="text/javascript"></script>
|
||
|
<!-- END PAGE LEVEL SCRIPTS -->
|
||
|
<script>
|
||
|
jQuery(document).ready(function() {
|
||
|
Metronic.init(); // init metronic core componets
|
||
|
Layout.init(); // init layout
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<script type="text/javascript">
|
||
|
function zoneTypeSelection() {
|
||
|
if (document.getElementById('radio_type_slave').checked) {
|
||
|
document.getElementById('form_master_ip').style.display = 'block';
|
||
|
}
|
||
|
else document.getElementById('form_master_ip').style.display = 'none';
|
||
|
}
|
||
|
</script>
|
||
|
<!-- END JAVASCRIPTS -->
|
||
|
{% endblock %}
|