| 1 |
<h1 class="pageTitle"><?php echo esc_html(__('Edit List', 'powerpress-network'));?></h1> |
| 2 |
<form method="POST" action="#/" id="createForm"> <!-- Make sure to keep back slash there for WordPress --> |
| 3 |
<label for="oldListTitle"><b><?php echo esc_html(__('Old List Title', 'powerpress-network'));?></b></label> |
| 4 |
<input id="oldListTitle" name="oldListTitle" type="text" value="<?php echo esc_html($networkInfo['list_title']); ?>" disabled><br> |
| 5 |
<label for="editListTitle"><b><?php echo esc_html(__('New List Title', 'powerpress-network'));?></b></label> |
| 6 |
<input id="editListTitle" name="editListTitle" type="text" value="<?php echo esc_html($networkInfo['list_title']); ?>"><br> |
| 7 |
<label for="listDescription"><b><?php echo esc_html(__('Old List Description', 'powerpress-network'));?></b></label> |
| 8 |
<textarea id ="listDescription" class="description" name="listDescription" rows ="3" type="text" disabled><?php echo esc_html($networkInfo['list_description']);?></textarea><br> |
| 9 |
<label for="editListDescription"><b><?php echo esc_html(__('New List Description', 'powerpress-network'));?></b></label> |
| 10 |
<textarea id ="editListDescription" class="description" name="editListDescription" rows ="3" type="text"><?php echo esc_html($networkInfo['list_description']);?></textarea><br> |
| 11 |
<button type="submit" class="primaryButton" onclick="directStatus('Select Choice', 'createForm', true)"><?php echo esc_html(__('Edit', 'powerpress-network'));?></button> |
| 12 |
<a class="ppn-back-button" href="<?php echo admin_url("admin.php?page=". urlencode(powerpress_admin_get_page()) ."&status=Select+Choice"); ?>"> |
| 13 |
<p><?php echo '← ' . esc_html(__('Back', 'powerpress-network'));?></p></a> |
| 14 |
</form> |
| 15 |
|