• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

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