-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompany_add.php
165 lines (113 loc) · 4.01 KB
/
company_add.php
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
<!doctype HTML5>
<html>
<head><link rel="icon" href="./img/logo-icon.png" />
<script src="./js/jquery-3.4.1.min.js"></script><script src="./js/navbar.js"></script><link rel="stylesheet" href="./main.css">
<!-- //<script type="text/javascript" src="slidemenu.js"></script>-->
<title>明道中學校友會</title>
<style>
.input{
font-size: large;
width: 30vw;
background: transparent;
padding: 5px;
border: solid lightslategray 1px;
}
td{
border-bottom:solid black 1px;
}
</style>
</head>
<body><div w3-include-html="./layout/navbar.php"></div>
<div align="center" class="banner">
<a id="top"></a>
<div>
<h3 class="title">企 業 登 入</h3>
</div>
<div>
<p class="subtitle">校友服務 > 明道人幫明道人 </p>
</div>
</div>
<div class="content">
<div class = "form" align="center">
<form action="company_add_exe.php" method="post">
<table cellpadding="15">
<tr>
<td align="center" colspan="2" ><h2>企業登入申請</h2></td>
</tr>
<tr>
<td align="left" colspan="2" style="font-size: x-large; background: whitesmoke"><b>校友資訊</b></td>
</tr>
<tr>
<td align="left" style="font-size: large" >姓名*</td>
<td align="left" ><input type="text" class="input" name="name" required></td>
</tr>
<tr>
<td align="left" style="font-size: large" >學號*</td>
<td align="left" ><input type="text" class="input" name="ID" required></td>
</tr>
<tr>
<td align="left" style="font-size: large" >畢業年分*</td>
<td align="left" ><input type="text" class="input" name="grad_year" required></td>
</tr>
<tr>
<td align="left" style="font-size: large" >科系</td>
<td align="left" ><input type="text" class="input" name="dept"></td>
</tr>
<tr>
<td align="left" style="font-size: large" >班級</td>
<td align="left" ><input type="text" class="input" name="class"></td>
</tr>
<tr>
<td align="left" style="font-size: large" >Email*</td>
<td align="left" ><input type="text" class="input" name="email" required></td>
</tr>
<tr>
<td align="left" style="font-size: large" >連絡電話</td>
<td align="left" ><input type="text" class="input" name="tel"></td>
</tr>
<tr>
<td align="left" colspan="2" style="font-size: x-large; background: whitesmoke"><b>公司資訊</b></td>
</tr>
<tr>
<td align="left" style="font-size: large" >公司名稱*</td>
<td align="left" ><input type="text" class="input" name="co_name" required></td>
</tr>
<tr>
<td align="left" style="font-size: large" >聯絡人姓名*</td>
<td align="left" ><input type="text" class="input" name="contact" required></td>
</tr>
<tr>
<td align="left" style="font-size: large" >聯絡人電話*</td>
<td align="left" ><input type="text" class="input" name="contact_tel" required></td>
</tr>
<tr>
<td align="left" style="font-size: large" >公司地址*</td>
<td align="left" ><input type="text" class="input" name="co_address" required></td>
</tr>
<tr>
<td align="left" style="font-size: large" >公司電話</td>
<td align="left" ><input type="text" class="input" name="co_tel"></td>
</tr>
<tr>
<td align="left" style="font-size: large" >公司網址</td>
<td align="left" ><input type="text" class="input" name="co_address"></td>
</tr>
<tr>
<td style="font-size: large">公司介紹</td>
<td>
<textarea name="co_intro" style="width:35vw;height:6vh;"></textarea>
</td>
</tr>
</table>
<br><br>
<p><input type="submit" class="button"> <input type="reset" class="button"></p>
</form>
</div>
</div>
<div w3-include-html="./layout/footer.html"></div>
</body>
</html>
<script src="./js/w3.js"></script>
<script>
w3.includeHTML();
</script>