Skip to content
Snippets Groups Projects
Commit d94ac508 authored by Gian Bustamante (gib650)'s avatar Gian Bustamante (gib650)
Browse files

Deleted QueueingApp/src/main/webapp/report.jsp

parent 1a18f801
No related branches found
No related tags found
No related merge requests found
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Add new report</title>
<link rel="stylesheet" href="style.css" type="text/css">
<!-- Fonts-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400&display=swap" rel="stylesheet">
</head>
<body>
<div class="NavBar">
<strong> QueueApp </strong>
<ul class="nav_choice">
<a href="workerLogin.jsp">Login</a>
<a href="landingPgServlet">Home</a>
</ul>
</div>
<div class="container">
<h1>New Report</h1>
<div class="details_container">
<form method="post" action="workerReportServlet">
<div class="employee_details">
<label for="EmployeeName">Worker Name:</label> <br>
<input type="text" id="employee_name" name="name"> <br>
<label for="report">Report:</label> <br>
<input type="text" id="employee_report" name="report"> <br>
</div>
<div class="employee_details">
<label for="employeeAddress">Location:</label> <br>
<input type="text" id="employee_address" name="location"> <br>
<input class="formBtn" type="submit" value="Submit"> <!-- CSS edit this! -->
</div>
</form>
</div>
<div class="userBttn">
<button onclick="window.location.href='landingPgServlet'">Cancel</button>
</div>
</div>
</body>
</html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment