error-message-examples: Difference between revisions
Jump to navigation
Jump to search
(A few error messages) |
(pre tags (doh!)) |
||
Line 17: | Line 17: | ||
* [http://www.mediawiki.org/ MediaWiki] failed login | * [http://www.mediawiki.org/ MediaWiki] failed login | ||
<div class="errorbox"> | <pre><div class="errorbox"> | ||
<h2>Login error:</h2> | <h2>Login error:</h2> | ||
Incorrect password or confirmation code entered. Please try again. | Incorrect password or confirmation code entered. Please try again. | ||
</div> | </div></pre> | ||
* [http://www.wordpress.com/ WordPress], failed to enter required fields in comment | * [http://www.wordpress.com/ WordPress], failed to enter required fields in comment | ||
<p>Error: please fill the required fields (name, email).</p> | <pre><p>Error: please fill the required fields (name, email).</p></pre> | ||
* [http://www.paypal.com/ PayPal] , trying to send negative dollars. | * [http://www.paypal.com/ PayPal] , trying to send negative dollars. | ||
<div class="messageBox error"> | <pre><div class="messageBox error"> | ||
<p>Some required information is missing or incomplete. Please correct your entries and try again.</p> | <p>Some required information is missing or incomplete. Please correct your entries and try again.</p> | ||
<ul><li>Please enter an amount greater than zero.</li></ul> | <ul><li>Please enter an amount greater than zero.</li></ul> | ||
</div> | </div></pre> | ||
== See Also == | == See Also == |
Revision as of 18:07, 24 June 2007
Error Message Examples
Contributors
Introduction
Examples of error messages published as chunks of readable (X)HTML by Web applications.
Table of Contents
Examples
- MediaWiki failed login
<div class="errorbox"> <h2>Login error:</h2> Incorrect password or confirmation code entered. Please try again. </div>
- WordPress, failed to enter required fields in comment
<p>Error: please fill the required fields (name, email).</p>
- PayPal , trying to send negative dollars.
<div class="messageBox error"> <p>Some required information is missing or incomplete. Please correct your entries and try again.</p> <ul><li>Please enter an amount greater than zero.</li></ul> </div>