-
Notifications
You must be signed in to change notification settings - Fork 0
/
Welcome to order Management.html
196 lines (195 loc) · 3.72 KB
/
Welcome to order Management.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<! DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<title> Welcome to order Management</title>
</head>
<style>
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700');
body {
font-family: 'Roboto Condensed', sans-serif;
color: #262626;
margin: 5% 0;
}
.container {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
@media (min-width: 1200px)
{
.container {
max-width: 1140px;
}
}
.d-flex {
display: flex;
flex-direction: column;
background: #f6f6f6;
border-radius: 0 0 5px 5px;
padding: 25px;
}
form {
flex: 4;
}
.Yorder {
flex: 2;
}
.title {
background: -webkit-gradient(linear, left top, right bottom, color-stop(0, #5195A8), color-stop(100, #70EAFF));
background: -moz-linear-gradient(top left, #5195A8 0%, #70EAFF 100%);
background: -ms-linear-gradient(top left, #5195A8 0%, #70EAFF 100%);
background: -o-linear-gradient(top left, #5195A8 0%, #70EAFF 100%);
background: linear-gradient(to bottom right, #5195A8 0%, #70EAFF 100%);
border-radius: 5px 5px 0 0 ;
padding: 20px;
color: #f6f6f6;
}
h2 {
margin: 0;
padding-left: 15px;
}
.required {
color: red;
}
label {
display: block;
margin: 15px;
}
table {
display: block;
margin: 15px;
}
label>span {
float: left;
width: 25%;
margin-top: 12px;
padding-right: 10px;
}
input[type="email"]
{
width: 70%;
height: 30px;
padding: 5px 10px;
margin-bottom: 10px;
border: 1px solid #dadada;
color: #888;
}
select
{
width: 70%;
height: 30px;
padding: 5px 10px;
margin-bottom: 10px;
border: 1px solid #dadada;
color: #888;
}
input[type="text"] {
width: 70%;
height: 30px;
padding: 5px 10px;
margin-bottom: 10px;
border: 1px solid #dadada;
color: #888;
}
input[type="tel"]
{
width: 70%;
height: 30px;
padding: 5px 10px;
margin-bottom: 10px;
border: 1px solid #dadada;
color: #888;
}
select {
width: 72%;
height: 45px;
padding: 5px 10px;
margin-bottom: 10px;
}
.Yorder {
margin-top: 15px;
height: 600px;
padding: 20px;
border: 1px solid #dadada;
}
table {
margin: 0;
padding: 0;
}
th {
border-bottom: 1px solid #dadada;
padding: 10px 0;
}
tr>td:nth-child(1) {
text-align: left;
color: #2d2d2a;
}
tr>td:nth-child(2) {
text-align: right;
color: #52ad9c;
}
td {
border-bottom: 1px solid #dadada;
padding: 25px 25px 25px 0;
}
p {
display: block;
color: #888;
margin: 0;
padding-left: 25px;
}
.Yorder>div {
padding: 15px 0;
}
button {
width: 100%;
margin-top: 10px;
padding: 10px;
border: none;
border-radius: 30px;
background: #52ad9c;
color: #fff;
font-size: 15px;
font-weight: bold;
}
button:hover {
cursor: pointer;
background: #428a7d;
}
</style>
<body>
<div class="container">
<div class="title">
<h2> Welcome to order Management </h2>
</div>
<div class="d-flex">
<form action="" method="">
<label><center>
<p><b class="fname"> The Order Received: <br>1. Sample order ONE <br>
2. Sample order TWO</b></p></center>
</label>
<label>
<span class="lname"> Raw Material Required: <span class="required"> * </span> </span>
<input type="text" name="lname">
</label>
<label>
<span> Manufacturing process to be Followed: <span class="required">*</span></span>
<input type="text" name="city">
</label>
</form>
<div class="Yorder">
<br>
<p><b> Comment: </b></p>
<br>
<textarea rows="4" cols="50" name="comment" form="usrform">
Enter text here...</textarea>
<p>The text area above is outside the form element, but should still be a part of the form.</p>
<button type="button"><a href="payment.html"> Next Step</a> </button>
</div>
</div>
</div>
</body>
</html>