dashboard
5 months ago
profile-cards
5 years ago
profile-header
6 months ago
already-logged-in.php
5 months ago
auth-forms.css
5 months ago
auth-forms.min.css
5 months ago
clean.php
5 years ago
login-form.php
5 months ago
lost-password-form.php
5 months ago
members.php
6 months ago
modal-login-form.php
4 days ago
public-profile.php
6 months ago
reg-form.php
4 days ago
reset-password-form.php
5 months ago
review-user-status.php
1 week ago
user-favourites.php
5 years ago
clean.php
29 lines
| 1 | <!DOCTYPE html> |
| 2 | <html lang="en"> |
| 3 | <head> |
| 4 | <meta charset="UTF-8"> |
| 5 | <title><?php echo isset($title)?$title:'WordPress Download Manager'; ?></title> |
| 6 | <?php wp_head(); ?> |
| 7 | <style> |
| 8 | body{ |
| 9 | background: transparent; |
| 10 | } |
| 11 | #wpdmlogin{ |
| 12 | border: 0 !important;background: transparent !important;box-shadow: none !important; margin: 0 !important; |
| 13 | } |
| 14 | </style> |
| 15 | </head> |
| 16 | <body> |
| 17 | <?php |
| 18 | the_post(); |
| 19 | the_content(); |
| 20 | ?> |
| 21 | </body> |
| 22 | <?php wp_footer(); ?> |
| 23 | <?php if(is_user_logged_in() && isset($_GET['interim-login'])){ ?> |
| 24 | <script> |
| 25 | window.parent.document.getElementById('wp-auth-check-wrap').style.display = 'none'; |
| 26 | </script> |
| 27 | <?php } ?> |
| 28 | </html> |
| 29 |