admin管理员组文章数量:1342526
I've just been messing around with setting a password protected directory on my webserver (so as to store hot copies of backups etc.) and was wondering if there's any way I may be able to style the password prompt that appears when a user attempts to access this page.
As it stands nobody will notice my nice little note, which makes me sad.
It seems to display similarly to a standard .js alert, though I've been unable to find a way to specify any css classes I may be able to alter, as the "alert" box does not show up in devtools, just the page bahind it:
Any advice / tips would be greatly appreciated.
I've just been messing around with setting a password protected directory on my webserver (so as to store hot copies of backups etc.) and was wondering if there's any way I may be able to style the password prompt that appears when a user attempts to access this page.
As it stands nobody will notice my nice little note, which makes me sad.
It seems to display similarly to a standard .js alert, though I've been unable to find a way to specify any css classes I may be able to alter, as the "alert" box does not show up in devtools, just the page bahind it:
Any advice / tips would be greatly appreciated.
Share Improve this question asked Nov 4, 2014 at 23:40 TaintedTainted 3371 gold badge5 silver badges17 bronze badges3 Answers
Reset to default 7You can't edit the authentication login box itself, it's different for every browser and its implemented as part of the browser's internals (for example, a snippet of Chrome's Code dealing with the Login Title: https://code.google./p/chromium/codesearch#chromium/src/chrome/app/generated_resources.grd&q=%22Authentication%20Required%22&sq=package:chromium&type=cs&l=3552).
What you can do is to create a custom php login page (with popover if you want) to display:
Redirect 401 "authorization required page" to custom page
Custom Login with htaccess through HTML/PHP
Replace Htaccess popup box with a html form?
Add this to .htaccess
ErrorDocument 401 /401.html
Then in your root directory (where your index.html is) make your own 401.html file. If you want to make the login work, however, you'll need a server side language like PHP.
From how to change the style of alert box, you cannot change the style of an alert box unless you make your own Alert Dialog (See Here for an example)
本文标签: javascriptHow can I style a htaccess password protection prompStack Overflow
版权声明:本文标题:javascript - How can I style a .htaccess password protection promp? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743698836a2523967.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论