Skip to content
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

frontend cleanup #129

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
90 changes: 57 additions & 33 deletions .classpath
Original file line number Diff line number Diff line change
@@ -1,33 +1,57 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" output="target/classes" path="src/main/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
<attribute name="maven.pomderived" value="true"/>
<attribute name="org.eclipse.jst.component.dependency" value="/WEB-INF/lib"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" output="target/classes" path="src/main/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" path="target/generated-sources/annotations">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="ignore_optional_problems" value="true"/>
<attribute name="m2e-apt" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="target/generated-test-sources/test-annotations">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="ignore_optional_problems" value="true"/>
<attribute name="m2e-apt" value="true"/>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>
3 changes: 2 additions & 1 deletion WebContent/CustomerLogin.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
border: black 2px solid;
margin: 3px 0px 1px 0px;
width: 105px;
text-align: center;
}

input {
Expand Down Expand Up @@ -126,7 +127,7 @@ <h1>Welcome to Online Book Store</h1>
</div>
</div> <br />
<br /> <input class="btn btn-success" type="submit"
value=" Login as an User "></td>
value=" Login "></td>
</tr>
</table>
</form>
Expand Down
14 changes: 7 additions & 7 deletions WebContent/CustomerRegister.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<form action="userreg" method="post">
<table class="tab" style="width:40%">

<tr style="background-color: white; color: green; border-radius: 25%">
<tr style="background-color: white; color: green; border-radius: 25%;">
<td>Enter the Registration Details</td>
</tr>
<tr>
Expand All @@ -57,28 +57,28 @@
type="text" name="username" id="userName"
placeholder="Enter your Username" required>
<br/> -->
<label for="Email" style="margin-right: 5%"> Email Id : </label>
<label for="Email" style="margin-right: 5%"> Email Id :</label>
<input type="text" name="mailid" id="Email"
placeholder="Enter your Email">
placeholder=" Enter your Email">
<br>
<label for="passWord">Password :&nbsp; </label>
<input
type="password" name="password" id="passWord"
placeholder="Enter Password" required>
placeholder=" Enter Password" required>
<br>
<label for="firstName">First Name : </label>
<input
type="text" name="firstname" id="firstName"
placeholder="Enter your First Name" required>
placeholder=" Enter your First Name" required>
<br>
<label for="lastName">Last Name : </label>
<input
type="text" name="lastname" id="lastName"
placeholder="Enter your Last Name" required>
placeholder=" Enter your Last Name" required>
<br>
<label for="address">Address: </label>
<textarea name="address" id="address"
placeholder="Enter your Address" required> </textarea>
placeholder=" Enter your Address" required> </textarea>
<br>
<label for="phno">Mobile No : </label>
<input type="text"
Expand Down
10 changes: 5 additions & 5 deletions WebContent/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ body {
text-align: center;
font-weight: bold;
margin: auto;
font-style: oblique;
font-style: inherit;
font-size: 25px;
text-shadow: 2px 2px #ff0000;
text-shadow: 2px 2px #252ba0;
}

.tab {
Expand All @@ -26,14 +26,14 @@ body {
}

.tab tr {
border: 1px black hidden;
border: 1px black solid;
border-radius: 10px;
background-color: #FFE5CC;
backdrop-filter: blur(50px);
font-size: 22px;
float:left;
padding-left:17%;
padding-bottom:5px;
padding-top:2px;
padding-top:3px;
margin-bottom:10px;
width:100%;
}
Expand Down