-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddJob.aspx
67 lines (63 loc) · 2.88 KB
/
addJob.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
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="addJob.aspx.cs" Inherits="addJob" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Adding a Job</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="addJobForm" runat="server">
<div style="text-align: center; ">
<asp:Label runat="server" Text="Adding a Job" Font-Size="54px" Font-Bold="true" />
<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" />
<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" />
<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"/>
<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" />
<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" />
<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" />
<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" />
<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" />
<br />
<br />
<asp:Button runat="server" ID="btn_submit" Text="Submit the new Job" 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>