| 1 |
<?php // TODO: is this used? user is already authed via powerpress when they reach the network admin ?> |
| 2 |
<div class="container"> |
| 3 |
<h1 class="pageTitle"><?php esc_html_e('Signin Blubrry Account', 'powerpress');?></h1><br> |
| 4 |
<form method ="POST" action="" id="signinForm"> <!-- Make sure to keep back slash there for WordPress --> |
| 5 |
<button name="signinRequest" type="submit" class="button button-primary" id="signinButton"><?php esc_html_e('Login', 'powerpress');?></button> |
| 6 |
<input type="hidden" name="ppn-action" value="link-account" /> |
| 7 |
<?php wp_nonce_field('powerpress', '_ppn_nonce'); ?> |
| 8 |
</form> |
| 9 |
</div> |
| 10 |
|