-
Notifications
You must be signed in to change notification settings - Fork 1
TS-13 web (jsp) #10
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
base: develop
Are you sure you want to change the base?
TS-13 web (jsp) #10
Conversation
| <url-pattern>/add</url-pattern> | ||
| </servlet-mapping> | ||
|
|
||
| <servlet> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Possible simplification: All these descriptions could be replaced by @WebServlet("/YOUR_PATH") annotation above the Servlet class (import javax.servlet.annotation.WebServlet.
|
|
||
| <div class="container signin"> | ||
| <p>Already have an account? <a href="#">Sign in</a>.</p> | ||
| <p>Already have an account? <a href="/singin">Sign in</a>.</p> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please implement the POST method for Sign-in servlet or put a mock-up (fake until you make it).
| <label for="email"><b>Email</b></label> | ||
| <input type="text" placeholder="Enter Email" name="email" required> | ||
| <label for="username"><b>Username</b></label> | ||
| <input type="text" placeholder="Enter uername" name="username" required> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please fix typo in the placeholder
| <%@ page contentType="text/html;charset=UTF-8" language="java" %> | ||
| <html> | ||
| <head> | ||
| <title>Регистрация</title> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please be consistent with the used language (don't mix Russian and English).
All the fields that are language-sensitive can be set up using different locales. Since the project doesn't provide the "language change" option, it would be better to stick with only one language.
No description provided.