-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEditJob.aspx
77 lines (73 loc) · 3.65 KB
/
EditJob.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
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="EditJob.aspx.cs" Inherits="Default2" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Edit Job Details</title>
<style>
.button1 {
background-color: #e720e8;
border:double;
font-size: 16px;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
}
.button1:hover {
background-color: black; /* Green */
color: blanchedalmond;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div style="text-align:center">
<asp:Label runat="server" Text="Editing a Job" Font-Size="54px" Font-Bold="true" />
<br />
<asp:Label runat="server" ID="lbl_jobid" font-size="20" />
<br />
<br />
<asp:Label runat="server" ID="lbl_title" Text="Job Title" Width="150px" Height="23px" />
<asp:TextBox runat="server" ID="txtbox_title" Width="200px" Height="18px" />
<asp:Label runat="server" ID="lbl_oldtitle" Width="250px" Height="23px" />
<br />
<br />
<asp:Label runat="server" ID="lbl_shortdesc" Text="Short Description" Width="150" Height="23px" />
<asp:TextBox runat="server" ID="txtbox_shortdesc" Width="200px" Height="50px" />
<asp:Label runat="server" ID="lbl_oldshort" Width="250px" Height="23px" />
<br />
<br />
<asp:Label runat="server" ID="lbl_longdesc" Text="Long Description" Width="150" Height="23px" />
<asp:TextBox runat="server" ID="txt_longdesc" Width="200px" Height="100px" TextMode="MultiLine" />
<asp:Label runat="server" ID="lbl_oldlong" Width="250px" Height="23px" />
<br />
<br />
<asp:Label runat="server" ID="lbl_years" Text="Minimum years of experience" Width="150" Height="23px" />
<asp:TextBox runat="server" ID="txt_years" Width="200px" Height="18px" />
<asp:Label runat="server" ID="lbl_oldyears" Width="250px" Height="23px" />
<br />
<br />
<asp:Label runat="server" ID="lbl_salary" Text="Salary" Width="150" Height="23px" />
<asp:TextBox runat="server" ID="txt_salary" Width="200px" Height="18px" />
<asp:Label runat="server" ID="lbl_oldsalary" Width="250px" Height="23px" />
<br />
<br />
<asp:Label runat="server" ID="lbl_deadline" Text="Application Deadline" Width="150" Height="23px" />
<asp:TextBox runat="server" ID="txt_deadline" Width="200px" Height="18px" type="Date" />
<asp:Label runat="server" ID="lbl_olddead" Width="250px" Height="23px" />
<br />
<br />
<asp:Label runat="server" ID="lbl_hours" Text="Work Hours" Width="150" Height="23px" />
<asp:TextBox runat="server" ID="txt_hours" Width="200px" Height="18px" />
<asp:Label runat="server" ID="lbl_oldhours" Width="250px" Height="23px" />
<br />
<br />
<asp:Label runat="server" ID="lbl_vacant" Text="Number of Vacancies" Width="150" Height="23px" />
<asp:TextBox runat="server" ID="txt_vacant" Width="200px" Height="18px" />
<asp:Label runat="server" ID="lbl_oldvacant" Width="250px" Height="23px" />
<br />
<br />
<asp:Button runat="server" ID="btn_submit" Text="Submit Edits" CssClass="button1" OnClick="btn_submit_Click" />
<asp:Button runat="server" ID="close" Text="Back to HR" CssClass="button1" OnClick="close_Click" />
</div>
</form>
</body>
</html>