-
Notifications
You must be signed in to change notification settings - Fork 915
Issues: LaravelCollective/html
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Author
Label
Projects
Milestones
Assignee
Sort
Issues list
Title: Bug: Login form does not validate incorrect email formats
Description:
The login form currently accepts invalid email addresses (e.g., "user@com" or "user@.com") without showing an error. Users are confused because they only realize the problem after submission fails.
Steps to Reproduce:
1. Go to the login page.
2. Enter an invalid email (like "test@com").
3. Enter any password.
4. Click "Login."
5. No validation error appears.
Expected Behavior:
The form should show an error message like “Please enter a valid email address” before allowing submission.
Screenshots:
N/A
Environment:
OS: Windows 11
Browser: Chrome 123
App Version: v2.5.0
Additional Context:
A simple regex check could fix this issue.
#837
opened Apr 26, 2025 by
lamajxr
<!--Get the samples from https://www.adobe.com/go/. ipdfembedapi_samples--> <!DOCTYPE html> <html> <head> <title>Adobe Acrobat Services PDF Embed API Sample</title> <meta charset="utf-8"/> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/> <meta id="viewport" name="viewport" content="width=device-width, initial-scale=1"/> </head> <body style="margin: 0px"> <div id="adobe-dc-view"></div> <script src="https://acrobatservices.adobe.com/view-sdk/viewer.js"></script> <script type="text/javascript"> document.addEventListener("adobe_dc_view_sdk.ready", function() { var adobeDCView = new AdobeDC.View({clientId: "<YOUR_CLIENT_ID>", divId: "adobe-dc-view"}); adobeDCView.previewFile( { content: {location: {url: "https://acrobatservices.adobe.com/view-sdk-demo/PDFs/Bodea Brochure.pdf"}}, metaData: {fileName: "Bodea Brochure.pdf"} }); }); </script> </body> </html>
#801
opened Aug 28, 2024 by
TyionPalmore
Previous Next
ProTip!
no:milestone will show everything without a milestone.