2018-04-07 18:19:14 -05:00
|
|
|
<?php
|
|
|
|
$page_title = "Create Mask";
|
|
|
|
|
2018-10-07 00:11:41 -05:00
|
|
|
include("../resources/config.php");
|
|
|
|
include("../resources/templates/header.php");
|
2018-04-07 18:19:14 -05:00
|
|
|
?>
|
|
|
|
|
2018-04-06 23:05:59 -05:00
|
|
|
|
|
|
|
<main>
|
|
|
|
|
|
|
|
<form action="conjure.php" method="post" enctype="multipart/form-data">
|
|
|
|
<p>
|
|
|
|
<input type="text" placeholder="URL"
|
|
|
|
name="url_target" class="basic-text">
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<input type="text" placeholder="Alias (Shortened URL)"
|
|
|
|
name="url_alias" class="basic-text">
|
|
|
|
</p>
|
|
|
|
|
2018-04-07 18:19:14 -05:00
|
|
|
<input style="margin-top: 10px; margin-bottom: 10px" type="submit"
|
|
|
|
value="FORGE <?php echo(strtoupper($url_aliasize_item)); ?>" name="submit">
|
2018-04-06 23:05:59 -05:00
|
|
|
</form>
|
|
|
|
|
2018-04-07 18:19:14 -05:00
|
|
|
<img alt="<?php echo($url_aliasize_alt); ?>" src="<?php echo($url_aliasize_img); ?>">
|
|
|
|
|
2018-04-06 23:05:59 -05:00
|
|
|
|
|
|
|
</main>
|
|
|
|
|
2018-10-07 00:11:41 -05:00
|
|
|
<?php include("../resources/templates/footer.html");?>
|