-
Notifications
You must be signed in to change notification settings - Fork 1
/
AssemblyInward.aspx
125 lines (124 loc) · 6.35 KB
/
AssemblyInward.aspx
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="AssemblyInward.aspx.cs" Inherits="WindingsIndia.AssemblyInward" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta charset="utf-8" />
<title>AppshotERP</title>
<!-- Stylesheets -->
<link href="Admin/css/reset.css" rel="stylesheet" type="text/css" />
<link href="Admin/css/visualize.css" rel="stylesheet" type="text/css" />
<link href="Admin/css/datatables.css" rel="stylesheet" type="text/css" />
<link href="Admin/css/buttons.css" rel="stylesheet" type="text/css" />
<link href="Admin/css/checkboxes.css" rel="stylesheet" type="text/css" />
<link href="Admin/css/inputtags.css" rel="stylesheet" type="text/css" />
<link href="Admin/css/main.css" rel="stylesheet" type="text/css" />
<!--[if lt IE 9]>
<link rel="stylesheet" type="text/css" href="Admin/css/ie.css" />
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<form id="form1" runat="server">
<asp:ToolkitScriptManager ID="ScriptManager1" runat="server" />
<div id="gradient">
<div id="stars">
<div id="container">
<header>
<!-- Logo -->
<h1 id="logo">
Admin Control Panel</h1>
<!-- User info -->
<%--<div id="userinfo">
<img src="Admin/img/avatar.png" alt="Bram Jetten" />
<div class="intro">
Welcome Bram<br />
You have <a href="#">3 new messages</a>
</div>
</div>--%>
</header>
<!-- The application "window" -->
<div id="application">
<!-- Primary navigation -->
<nav id="primary">
<ul>
<li><a href="Home.aspx"><span class="icon dashboard"></span>Home </a></li>
<li><a href="IssueIndents.aspx"><span class="icon pencil"></span>Issue
Indents </a></li>
<li class="current"><a href="MaterialInward.aspx"><span class="icon tables"></span>Material Inward</a></li>
<li><a href="/charts"><span class="icon chart"></span><span class="badge">4</span> Charts
</a></li>
<li><a href="/notifications"><span class="icon modal"></span>Notifcations </a></li>
<li><a href="/gallery"><span class="icon gallery"></span>Gallery </a></li>
<li><a href="/buttons"><span class="icon anchor"></span>Icons/buttons </a></li>
</ul>
<input type="text" id="search" placeholder="Realtime search..." />
</nav>
<!-- Secondary navigation -->
<nav id="secondary">
<ul>
<li ><a href="MaterialInward.aspx">Raw Material Inward</a></li>
<li class="current"><a href="#Assembly">Assembly Inward</a></li>
</ul>
</nav>
<!-- The content -->
<section id="content">
<%--<div id="RawMaterial" class="tab">
<h2>Raw Material Inward</h2>
<div class="column left third">
<section>
<label for="ddlRawMaterialID">
Raw Material ID
</label>
<div>
<asp:ComboBox ID="ddlRawMaterialID" runat="server" AutoCompleteMode="SuggestAppend" EnableTheming="true">
</asp:ComboBox>
</div>
</section>
<section>
<label for="txtDescription">
Description
</label>
<div>
<input type="text" id="txtDescription" runat="server" placeholder="Alpha Numeric" class="required" />
</div>
</section>
<section>
<label for="txtDate">
Date
</label>
<div>
<input type="text" id="txtDate" runat="server" placeholder="Date in MM-DD-YYYY" class="required" />
</div>
</section>
<section>
<label for="txtInvoiceNo">
InvoiceNo
</label>
<div>
<input type="text" id="txtInvoiceNo" runat="server" placeholder="Alpha Numeric" class="required" />
</div>
</section>
<section>
<label for="txtQuantity">
Quantity
</label>
<div>
<input type="text" id="txtQuantity" runat="server" placeholder="Only Numbers" class="required" />
</div>
</section>
<asp:Button ID="btnProcess" Text="Process" runat="server" CssClass="button icon approve" />
</div>
</div>--%>
<div id="Assembly" class="tab">
<h2>Assembly Inward</h2>
</div>
</section>
</div>
<footer id="copyright">© Copyrights. All rights reserved by Appshot.in</footer>
</div>
</div>
</div>
</form>
</body>
</html>