-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuploadWo.html
More file actions
51 lines (48 loc) · 3 KB
/
uploadWo.html
File metadata and controls
51 lines (48 loc) · 3 KB
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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" type="text/css">
<link rel="stylesheet" href="https://pingendo.com/assets/bootstrap/bootstrap-4.0.0-alpha.6.css" type="text/css"> </head>
<body>
<nav class="navbar navbar-light sticky-top">
<a class="navbar-brand" href="#"> <img src="LogoBitmap.png" width="30" height="30" class="d-inline-block align-top" alt=""> Cognizant </a>
<ul class="nav nav-pills">
<li class="nav-item"> <a class="nav-link active" href="#">WorkOrder</a> </li>
<li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">Resource Tasks</a>
<div class="dropdown-menu"> <a class="dropdown-item" href="#">Task 1</a> <a class="dropdown-item" href="#">Task 2</a> <a class="dropdown-item" href="#">Task 3</a>
<div class="dropdown-divider"></div> <a class="dropdown-item" href="#">Seperate Task</a> </div>
</li>
<li class="nav-item"> <a class="nav-link" href="#">Task Link</a> </li>
</ul>
</nav>
<div class="py-5">
<div class="container">
<div class="row">
<div class="col-md-12">
<form class="">
<div class="form-group"> <label>Project Name</label> <input type="email" class="form-control" placeholder="Enter Project Name"> </div>
<div class="form-group"> <label>Start Date</label> <input type="password" class="form-control" placeholder="Enter Start Date"> </div>
<div class="form-group"> <label>End Date</label> <input type="password" class="form-control" placeholder="Enter End Date"> </div>
<div class="form-group"> <label>Project Manager Name</label> <input type="password" class="form-control" placeholder="Enter Project Manager Name"> </div>
<div class="form-group"> <label for="exampleSelect1">Project Status</label> <select class="form-control" id="exampleSelect1">
<option>Signed</option>
<option>Pending</option>
</select> </div>
<div class="form-group"> <label for="exampleTextarea">Comments</label> <textarea class="form-control" id="exampleTextarea" rows="3"></textarea> </div>
<div class=" row">
<div class="col-md-6 col-6">
<!-- Your first column here --><button type="submit" class="btn btn-primary">Upload</button> </div>
<div class="col-md-6 col-6">
<!-- Your second column here --><button type="submit" class="btn btn-success">Submit</button> </div>
</div>
</form>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js"></script>
<script src="https://pingendo.com/assets/bootstrap/bootstrap-4.0.0-alpha.6.min.js"></script>
</body>
</html>