You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.5 KiB
40 lines
1.5 KiB
<?php include_once 'header.php';?>
|
|
|
|
<?php if ($errors) { ?>
|
|
<div class="alert alert-danger">
|
|
<?php if (isset($errors["e"])) echo $errors["e"];
|
|
if (isset($errors["e1"])) echo $errors["e1"];?>
|
|
</div>
|
|
<?php } ?>
|
|
|
|
<form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
|
|
|
|
<div class="card">
|
|
<div class="card-header card-header-icon card-header-success">
|
|
<div class="card-icon">
|
|
<i class="material-icons">create</i>
|
|
</div>
|
|
<h4 class="card-title "><?php echo $jkl["m28"];?></h4>
|
|
</div>
|
|
<div class="card-body">
|
|
|
|
|
|
<div class="form-group">
|
|
<label class="control-label" for="url"><?php echo $jkl["g167"];?></label>
|
|
<input type="text" name="path" id="url" class="form-control<?php if (isset($errors["e"])) echo " is-invalid";?>" value="<?php echo $JAK_FORM_DATA["path"];?>" />
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label class="control-label" for="title"><?php echo $jkl["g16"];?></label>
|
|
<input type="text" name="title" id="title" class="form-control<?php if (isset($errors["e1"])) echo " is-invalid";?>" value="<?php echo $JAK_FORM_DATA["title"];?>" />
|
|
</div>
|
|
|
|
</div>
|
|
<div class="card-footer">
|
|
<a href="<?php echo JAK_rewrite::jakParseurl('blacklist');?>" class="btn btn-default"><?php echo $jkl["g103"];?></a>
|
|
<button type="submit" name="save" class="btn btn-primary pull-right"><?php echo $jkl["g38"];?></button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
<?php include_once 'footer.php';?>
|
|
|