-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathms-signup-another-blog-form.php
84 lines (72 loc) · 4.68 KB
/
ms-signup-another-blog-form.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?php
/*
If you would like to edit this file, copy it to your current theme's directory and edit it there.
Theme My Login will always look in your theme's directory first, before using this default template.
*/
?>
<h2><?php printf( __( 'Get <em>another</em> %s site in seconds', 'theme-my-login' ), $current_site->site_name ); ?></h2>
<?php if ( $errors->get_error_code() ) { ?>
<p><?php _e( 'There was a problem, please correct the form below and try again.', 'theme-my-login' ); ?></p>
<?php } ?>
<p><?php printf( __( 'Welcome back, %s. By filling out the form below, you can <strong>add another site to your account</strong>. There is no limit to the number of sites you can have, so create to your heart’s content, but write responsibly!', 'theme-my-login' ), $current_user->display_name ); ?></p>
<?php
$blogs = get_blogs_of_user( $current_user->ID );
if ( ! empty( $blogs ) ) { ?>
<p><?php _e( 'Sites you are already a member of:', 'theme-my-login' ); ?></p>
<ul>
<?php foreach ( $blogs as $blog ) {
$home_url = get_home_url( $blog->userblog_id );
echo '<li><a href="' . esc_url( $home_url ) . '">' . $home_url . '</a></li>';
} ?>
</ul>
<?php } ?>
<p><?php _e( 'If you’re not going to use a great site domain, leave it for a new user. Now have at it!', 'theme-my-login' ); ?></p>
<form id="setupform" method="post" action="<?php $template->the_action_url( 'register', 'login_post' ); ?>">
<input type="hidden" name="action" value="register" />
<input type="hidden" name="stage" value="gimmeanotherblog" />
<?php do_action( 'signup_hidden_fields' ); ?>
<?php if ( ! is_subdomain_install() ) { ?>
<label for="blogname<?php $template->the_instance(); ?>"><?php _e( 'Site Name:', 'theme-my-login' ); ?></label>
<?php } else { ?>
<label for="blogname<?php $template->the_instance(); ?>"><?php _e( 'Site Domain:', 'theme-my-login' ); ?></label>
<?php } ?>
<?php if ( $errmsg = $errors->get_error_message( 'blogname' ) ) { ?>
<p class="error"><?php echo $errmsg; ?></p>
<?php } ?>
<?php if ( ! is_subdomain_install() ) { ?>
<span class="prefix_address"><?php echo $current_site->domain . $current_site->path; ?></span>
<input name="blogname" type="text" id="blogname<?php $template->the_instance(); ?>" value="<?php echo esc_attr( $blogname ); ?>" maxlength="60" /><br />
<?php } else { ?>
<input name="blogname" type="text" id="blogname<?php $template->the_instance(); ?>" value="<?php echo esc_attr( $blogname ); ?>" maxlength="60" />
<span class="suffix_address"><?php echo ( $site_domain = preg_replace( '|^www\.|', '', $current_site->domain ) ); ?></span><br />
<?php } ?>
<?php if ( ! is_user_logged_in() ) {
if ( ! is_subdomain_install() )
$site = $current_site->domain . $current_site->path . __( 'sitename', 'theme-my-login' );
else
$site = __( 'domain', 'theme-my-login' ) . '.' . $site_domain . $current_site->path;
echo '<p>(<strong>' . sprintf( __( 'Your address will be %s.', 'theme-my-login' ), $site ) . '</strong>) ' . __( 'Must be at least 4 characters, letters and numbers only. It cannot be changed, so choose carefully!', 'theme-my-login' ) . '</p>';
} ?>
<label for="blog_title<?php $template->the_instance(); ?>"><?php _e( 'Site Title:', 'theme-my-login' ); ?></label>
<?php if ( $errmsg = $errors->get_error_message( 'blog_title' ) ) { ?>
<p class="error"><?php echo $errmsg; ?></p>
<?php } ?>
<input name="blog_title" type="text" id="blog_title<?php $template->the_instance(); ?>" value="<?php echo esc_attr( $blog_title ); ?>" />
<div id="privacy">
<p class="privacy-intro">
<label for="blog_public_on<?php $template->the_instance(); ?>"><?php _e( 'Privacy:', 'theme-my-login' ); ?></label>
<?php _e( 'Allow search engines to index this site.', 'theme-my-login' ); ?>
<br style="clear:both" />
<label class="checkbox" for="blog_public_on<?php $template->the_instance(); ?>">
<input type="radio" id="blog_public_on<?php $template->the_instance(); ?>" name="blog_public" value="1" <?php if ( ! isset( $_POST['blog_public'] ) || $_POST['blog_public'] == '1' ) { ?>checked="checked"<?php } ?> />
<strong><?php _e( 'Yes', 'theme-my-login' ); ?></strong>
</label>
<label class="checkbox" for="blog_public_off<?php $template->the_instance(); ?>">
<input type="radio" id="blog_public_off<?php $template->the_instance(); ?>" name="blog_public" value="0" <?php if ( isset( $_POST['blog_public'] ) && $_POST['blog_public'] == '0' ) { ?>checked="checked"<?php } ?> />
<strong><?php _e( 'No', 'theme-my-login' ); ?></strong>
</label>
</p>
</div>
<?php do_action( 'signup_blogform', $errors ); ?>
<p class="submit"><input type="submit" name="submit" class="submit" value="<?php esc_attr_e( 'Create Site', 'theme-my-login' ); ?>" /></p>
</form>