Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update register.php
  • Loading branch information
kasuganosoras committed Oct 14, 2021
1 parent 6b9ffa1 commit ba71b04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pigeon/template/pigeon_dark/register.php
Expand Up @@ -27,11 +27,11 @@
<input type="hidden" name="seid" value="<?php echo isset($_SESSION['seid']) ? $_SESSION['seid'] : ""; ?>" />
<div class="input-group">
<span class="input-group-addon" style="border-radius: 6px 0px 0px 0px;"><i class="fa fa-user" style="width: 16px;"></i></span>
<input type="text" placeholder="账号" value="<?php echo isset($_POST['username']) ? $_POST['username'] : ""; ?>" name="username" class="form-control" required style="box-shadow: none;height: 42px;border-radius: 0px 6px 0px 0px;">
<input type="text" placeholder="账号" value="<?php echo htmlspecialchars($temp_user); ?>" name="username" class="form-control" required style="box-shadow: none;height: 42px;border-radius: 0px 6px 0px 0px;">
</div>
<div class="input-group">
<span class="input-group-addon" style="border-top: 0px;border-radius: 0px;"><i class="fa fa-envelope-o" style="width: 16px;"></i></span>
<input type="email" placeholder="邮箱" value="<?php echo isset($_POST['email']) ? $_POST['email'] : ""; ?>" name="email" class="form-control" required style="box-shadow: none;height: 41px;border-radius: 0px;border-top: 0px;">
<input type="email" placeholder="邮箱" value="<?php echo htmlspecialchars($temp_email); ?>" name="email" class="form-control" required style="box-shadow: none;height: 41px;border-radius: 0px;border-top: 0px;">
</div>
<div class="input-group">
<span class="input-group-addon" style="border-top: 0px;border-radius: 0px 0px 0px 6px;"><i class="fa fa-key" style="width: 16px;"></i></span>
Expand All @@ -51,4 +51,4 @@
</form>
</div>
<div class="col-sm-3"></div>
</center>
</center>

0 comments on commit ba71b04

Please sign in to comment.