profile.php 572 B

12345678910111213141516
  1. <?php
  2. $params = array(
  3. 'jwt' => $this->jwt(),
  4. );
  5. $settingsUrl = is_ssl()? 'https://' : 'http://';
  6. $settingsUrl .= self::DOMAIN . '/settings/?' . http_build_query($params, null, '&');
  7. ?>
  8. <link rel="stylesheet" href="<?php echo $this->pluginDirUrl; ?>styles.css" type="text/css" />
  9. <div class="wrap">
  10. <?php screen_icon(); ?>
  11. <h2>我的多说帐号
  12. <a class="add-new-h2" target="_blank" href="<?php echo $settingsUrl;?>">在新窗口中打开</a>
  13. </h2>
  14. <iframe id="duoshuo-remote-window" src="<?php echo $settingsUrl;?>" style="width:960px;height:750px;"></iframe>
  15. </div>