mirror of
https://github.com/zamentur/libreto.git
synced 2025-11-10 15:59:55 +05:30
41 lines
1 KiB
PHP
41 lines
1 KiB
PHP
<?php
|
|
include('snippets/functions.php');
|
|
if(isset($_POST['new_name'])):
|
|
if($new_name = $_POST['new_name']) :
|
|
header('Location: ' . 'http://' . $_SERVER["SERVER_NAME"] . '/' . urlencode($new_name) );
|
|
endif;
|
|
endif;
|
|
?>
|
|
<!doctype html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>Libreto</title>
|
|
|
|
<link rel="stylesheet" href="/assets/style-index.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div id="container">
|
|
<article>
|
|
<?php
|
|
$markdown = file_get_contents("readme.md");
|
|
$Parsedown = new ParsedownExtra();
|
|
$html = $Parsedown->setBreaksEnabled(true)->text($markdown);
|
|
echo $html;
|
|
?>
|
|
<div class="create_libreto">
|
|
<form action="" method="POST">
|
|
<input type="input" autofocus="autofocus" onfocus="this.select()" name="new_name" />
|
|
<button type="submit" />Créer un Libreto</button>
|
|
</form>
|
|
</div>
|
|
</article>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|