-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzhaobiao_fabu.php
45 lines (40 loc) · 1.6 KB
/
zhaobiao_fabu.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
<? session_start(); ?>
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
html,body {
background: linear-gradient(to left bottom,rgb(102,204,255),rgb(255,255,255));//渐变色
width: 100%;
height: 100%;
}
input {
background-color:#eee;
outline:none; /*不出现蓝色边框*/
border-radius: 20px;
border: 1px solid #3FF;
transition: 300ms;
font-size: 14px;
}
#div h1 {
font-family: 华文行楷;
font-size:40px;
color:#F6F;
}
</style>
</head>
<body>
<div id="div" style="height:70px"><h1 align="center">招标信息发布</h1></div>
<form id="form1" name="form1" method="post" action="receive2.php">
<table align="center" width="47%" height="70">
<tr height="30"><td align="right">药品名称:</td><td><input type="text" name="yaopin_name" required="required" /></td></tr>
<tr height="30"><td align="right">药品总量:</td><td><input type="text" name="zhaobiao_total" required="required" "/></td></tr>
<tr height="30"><td align="right">招标截止日期:</td><td><input type="date" name="zhaobiao_end_date" required="required" "/></td></tr>
<tr height="30"><td align="right">招标保证金:</td><td><input type="text" name="zhaobiao_baozhenjin" required="required" "/></td></tr>
<tr><td></td><td><input type="submit" name="submit" value="提交" /><input type="reset" name="reset" value="重置" /></td></tr>
</table>
</form>
</body>
</html>