?>
<div class="wrap">
<h1><?php
echo esc_html( $title ); ?></h1>
<form method="post" action="settings.php" novalidate="novalidate">
<?php
wp_nonce_field( 'siteoptions'
); ?>
<h2><?php
_e( 'Operational Settings'
); ?></h2>
<table class="form-table" role="presentation">
<tr>
<th scope="row"><label for="site_name"><?php
_e( 'Network Title'
); ?></label></th>
<td>
<input name="site_name" type="text" id="site_name" class="regular-text" value="<?php
echo esc_attr( get_network()->site_name
); ?>" />
</td>
</tr>
<tr>
<th scope="row"><label for="admin_email"><?php
_e( 'Network Admin Email'
); ?></label></th>
<td>
<input name="new_admin_email" type="email" id="admin_email" aria-describedby="admin-email-desc" class="regular-text" value="<?php
echo esc_attr( get_site_option( 'admin_email'
) ); ?>" />
<p class="description" id="admin-email-desc">
<?php
_e( 'This address is used for admin purposes. If you change this, an email will be sent to your new address to confirm it. <strong>The new address will not become active until confirmed.</strong>'
); ?>
</p>
<?php