目前我的电子邮件接受所有电子邮件域。我想定义列表中允许哪些列表(solent.ac.uk、herts.ac.uk)而不是公共列表,例如@gmail.com 等。无论哪种方式现在最简单,我都会尝试替代就目前而言,这只是暂时的。
<form method="post" action="<?php url_for('register'); ?>">
<!--Email-->
<p class="email field">
<input tabindex="1" id="email" type="text" name="email" value="<?php if(isset($_POST['email'])) echo $_POST['email']; ?>" placeholder="email@example.com" autofocus />
<a href="<?php url_for('login'); ?>" tabindex="2" class="action button register" title="Click to log-in with your existing account.">Login</a>
</p>
谢谢。