• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

How to create friendly login for users?

J

jmorrissette

Guest
In Windows, I want to create a simple, friendly login for my email account holders. For example, right now they can type 'webmail.domain-name.com' to access their horde email interface.

However, I want my users to be able to type something like 'manage.domain-name.com' to be able to log into their plesk user account, where they can adjust their passwords, aliases, forwarding, etc.

Right now, I have an address with a port number that is impossible for my users to remember https://###.###.###.###:PORT ###

Can anyone help?
 
Hi,
You can create one html fils like this


<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Welcome Hosting</title>
</head>


<body>
<center>

<table class="border" border="0" cellpadding="0" cellspacing="0" width="95%" align=center>
<tr><td>
<table border="0" cellpadding="5" cellspacing="1" width="100%">
<tr><td>
<center>
<FORM action="https://yourdomain.com:8443/login_up.php3" target="_self" method="post">
<table>
<tr>
<td>
<table align=center cellpadding="4">
<tr>
<td colspan=2 align=center>
<b>Login to Hosting</b><br><br>
</td>
</tr>
<tr>
<td align=right>User Name: </td>
<td><input type="text" name="login_name" id="login_name" value="" size="25" maxlength="255"></td>
</tr>
<tr>
<td align=right>Password: </td>
<td><input type="password" name="passwd" id="passwd" size="25" maxlength="14"></td>
</tr>
<tr>
<td colspan=2 align=center>
<INPUT name="B1" type="submit" value="Login">
</td>
</tr>
</table>
</td>
</tr>
</table>
<br><br>
</form>
</center>
</td></tr>
</table>
</td></tr>
</table>
</center>

</body>

</html>
 
Back
Top