<h1><?php echo __('pages.add_page', 'Add a Page'); ?></h1>
<?php echo Notifications::read(); ?>
<section class="content">
<form method="post" action="<?php echo Url::current(); ?>" novalidate>
<fieldset>
<p>
<label for="name"><?php echo __('pages.name', 'Name'); ?>:</label>
<input id="name" name="name" value="<?php echo Input::post('name'); ?>">
<em><?php echo __('pages.name_explain', 'The name of your page. This gets shown in the navigation.'); ?></em>
</p>
<p>
<label><?php echo __('pages.title', 'Title'); ?>:</label>
<input id="title" name="title" value="<?php echo Input::post('title'); ?>">
<em><?php echo __('pages.title_explain', 'The title of your page, which gets shown in the <code><title></code>.'); ?></em>
</p>
<p>
<label for="slug"><?php echo __('pages.slug', 'Slug'); ?>:</label>
<input id="slug" autocomplete="off" name="slug" value="<?php echo Input::post('slug'); ?>">
<em><?php echo __('pages.slug_explain', 'The slug for your post (<code>/<span id="output">slug</span></code>).'); ?></em>
</p>
<p>
<label for="content"><?php echo __('pages.content', 'Content'); ?>:</label>
<textarea id="content" name="content"><?php echo Input::post('content'); ?></textarea>
<em><?php echo __('pages.content_explain', 'Your page\'s content. Accepts valid HTML.'); ?></em>
</p>
<p>
<label for="redirect"><?php echo __('pages.redirect_option', 'This page triggers a redirect to another url'); ?>:</label>
<?php $checked = Input::post('redirect_url') ? ' checked' : ''; ?>
<input id="redirect" type="checkbox"<?php echo $checked; ?>>
</p>
<p>
<label for="redirect_url"><?php echo __('pages.redirect_url', 'Redirect Url'); ?></label>
<input id="redirect_url" name="redirect" value="<?php echo Input::post('redirect_url'); ?>">
</p>
<p>
<label><?php echo __('pages.status', 'Status'); ?>:</label>
<select id="status" name="status">
<?php foreach(array(
'draft' => __('pages.draft', 'Draft'),
'archived' => __('pages.archived', 'Archived'),
'published' => __('pages.published', 'Published')
) as $value => $status): ?>
<?php $selected = (Input::post('status') == $value) ? ' selected' : ''; ?>
<option value="<?php echo $value; ?>"<?php echo $selected; ?>>
<?php echo $status; ?>
</option>
<?php endforeach; ?>
</select>
<em><?php echo __('pages.status_explain', 'Do you want your page to be live (published), pending (draft), or hidden (archived)?'); ?></em>
</p>
</fieldset>
<p class="buttons">
<button type="submit"><?php echo __('pages.create', 'Create'); ?></button>
<a href="<?php echo admin_url('pages'); ?>"><?php echo __('pages.return_pages', 'Return to pages'); ?></a>
</p>
</form>
</section>
<script src="<?php echo theme_url('assets/js/lang.js'); ?>"></script>
<script>
// define global js translations
// for our popups
Lang.load('pages');
</script>
<script src="<?php echo theme_url('assets/js/textareas.js'); ?>"></script>
<script src="<?php echo theme_url('assets/js/redirect.js'); ?>"></script>