-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddCustomer.jsp
111 lines (77 loc) · 4.34 KB
/
addCustomer.jsp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<%--
Document : addCustomer
Created on : Jan 6, 2018, 2:19:44 PM
Author : edgargangwareiv
--%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
<link href='http://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
<script src="myScripts.js"></script>
<link rel="stylesheet" href="navbarstyle.css">
<style>
.flex-container {
columns: 4;
column-gap: 5px;
padding: 5px;
}
.information-category {
padding-top: 10px;
font-weight: 600;
}
</style>
</head>
<body>
<h1>Enter the Following Information to Add a New Customer: </h1>
<div id="SideNavigation" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav();changeFlexContainerToFour()">×</a>
<a href="checkLogin.jsp">Home</a>
<a href="readme.jsp">About This CRM</a>
<a href="searchClient.jsp">Search Client's</a>
<a href="addCustomer.jsp">Add a Client</a>
</div>
<div id="OpenNavigationbutton" class="opennavbutton">
<span style="font-size:30px;cursor:pointer" onclick="openNav();changeFlexContainerToThree()">☰ Navigation</span>
</div>
<form action='addCustomerLanding.jsp' id="hidden">
<div class="flex-container" id="displayed">
<div class="information-category"> Company Name: </div>
<div> <input type="text" name="cn" required> </div>
<div class="information-category"> Purchase Date: </div>
<div> <input type="text" name="pd" > </div>
<div class="information-category"> Invoice Number: </div>
<div> <input type="text" name="in"> </div>
<div class="information-category"> CSR: </div>
<div> <input type="text" name="csr" > </div>
<div class="information-category"> Executive Contact: </div>
<div> <input type="text" name="ec" > </div>
<div class="information-category"> Email Address: </div>
<div> <input type="text" name="ea" > </div>
<div class="information-category"> GS1 UserName: </div>
<div> <input type="text" name="un" > </div>
<div class="information-category"> GS1 Password: </div>
<div> <input type="text" name="p" > </div>
<div class="information-category"> UPC Codes Purchased: </div>
<div> <input type="text" name="cp" > </div>
<div class="information-category"> GS1 Application Submission Date: </div>
<div> <input type="text" name="as" > </div>
<div class="information-category"> Date Barcodes Sent To Customer: </div>
<div> <input type="text" name="dbs" > </div>
<div class="information-category"> Digital or Printed: </div>
<div> <input type="text" name="dop" > </div>
<div class="information-category"> GS1 Worksheet Return Date: </div>
<div> <input type="text" name="wrd" > </div>
<div class="information-category"> Assigned Prefix: </div>
<div> <input type="text" name="ap" > </div>
<div class="information-category"> UPCs Officially Registered: </div>
<div> <input type="text" name="or" > </div>
<div class="information-category"> Customer Phase: </div>
<div> <input type="text" name="pd" > </div>
</div>
<input type="submit" value="OK" />
</form>
</body>
</html>