-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreateCodes.html
108 lines (90 loc) · 5.26 KB
/
createCodes.html
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
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link href="style1.css" rel="stylesheet" type="text/css">
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Fonts -->
<link rel="dns-prefetch" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css?family=Raleway:300,400,600" rel="stylesheet" type="text/css">
<link rel="icon" href="Favicon.png">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<title >AuthentiFi</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light navbar-laravel">
<div class="container">
<a class="navbar-brand" href="http://localhost:8080/" style="color:#1fa667">AuthentiFi</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="http://localhost:8080/createRetailer" style="color:#1fa667">Retailer Registration</a>
</li>
</ul>
</div>
</div>
</nav>
<main class="myform">
<div class="cotainer">
<div class="row justify-content-center">
<div class="col-md-8">
<div class="card">
<div style="background-color: #1fa667;color: #ffffff" class="card-header">Generate QR Codes</div>
<div class="card-body">
<form name="myform" onsubmit="return validform()" action="http://localhost:8080/QRCodeForManufacturer" method="POST" >
<div class="form-group row">
<label for="brand" class="col-md-4 col-form-label text-md-right">Brand Name</label>
<div class="col-md-6">
<input type="text" id="brand" class="form-control" name="brand">
</div>
</div>
<div class="form-group row">
<label for="model" class="col-md-4 col-form-label text-md-right">Model</label>
<div class="col-md-6">
<input type="text" id="model" class="form-control" name="model">
</div>
</div>
<div class="form-group row">
<label for="description" class="col-md-4 col-form-label text-md-right">Description</label>
<div class="col-md-6">
<input type="text" id="description" class="form-control" name="description" style="height:100px">
</div>
</div>
<div class="form-group row">
<label for="manufacturerName" class="col-md-4 col-form-label text-md-right">Manufacturer Name</label>
<div class="col-md-6">
<input type="type" id="manufacturerName" class="form-control" name="manufacturerName">
</div>
</div>
<div class="form-group row">
<label for="manufacturerLocation" class="col-md-4 col-form-label text-md-right">Manufacturer Location</label>
<div class="col-md-6">
<input type="type" id="manufacturerLocation" class="form-control" name="manufacturerLocation">
</div>
</div>
<div class="col-md-6 offset-md-4">
<button type="submit" class="btn btn-primary">
Generate
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</main>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
</body>
</html>