- Impact
- 0
Hello and great job on cpemail iNod! I have your latest version 1.2 but am needing assistance for adding the form on html. I have coppied and pasted the form onto an html page and added a domain in the select box but it won't show up for the select domain in html. Maybe I am doing something wrong but I could use some help.
Here is the script as follows:
<form method="post" action="/createmail/cpemail.php">Email Address: <input type="text" name="NewEmail">@<select name="ComplexSecurities.com" id="ComplexSecurities.com">
<?php
foreach ($ending as $key) {
print "<option>$key</option>";
}
?>
</select><br/>Password: <input type="password" name="Password"><br><input type="submit" name="submit" value="Create!"></form><br><br><br><form method="get" action="http://<?= CPIP ?>:2095/login/">Login to Webmail<br>Email Address: <input type="text" name="user">
</select>
<br/>Password: <input type="password" name="pass"><br><input type="submit" name="submit" value="Login!"></form>
As you can see, the select is set correctly but cannot select anything in a browser. Nothing there to select.
Here is the script as follows:
<form method="post" action="/createmail/cpemail.php">Email Address: <input type="text" name="NewEmail">@<select name="ComplexSecurities.com" id="ComplexSecurities.com">
<?php
foreach ($ending as $key) {
print "<option>$key</option>";
}
?>
</select><br/>Password: <input type="password" name="Password"><br><input type="submit" name="submit" value="Create!"></form><br><br><br><form method="get" action="http://<?= CPIP ?>:2095/login/">Login to Webmail<br>Email Address: <input type="text" name="user">
</select>
<br/>Password: <input type="password" name="pass"><br><input type="submit" name="submit" value="Login!"></form>
As you can see, the select is set correctly but cannot select anything in a browser. Nothing there to select.
Last edited:





