标签:文档 管理信息系统 数据存储 role name 环境 html 系统规划 lan
<!DOCTYPE html>
<html lang="en">
<head>
{% extends ‘wenda.html‘ %}
<meta charset="UTF-8">
<title>{% block title %}
问答
{% endblock %}</title>
{% block head %}
<link rel="stylesheet" type="text/css" href="../static/css/wenda.css">
{% endblock %}
</head>
<body>
{% block body %}
<div class="box">
<div class="form-group">
<div class="bt">
<label for="question">标题</label>
<textarea class="form-control" rows="5" id="question"></textarea>
</div>
<div class="xq">
<lable for="questionDetail">详情</lable>
<textarea class="form-control" rows="1" id="questionDetail"></textarea>
</div>
<div class="question">
<label for="questionTitle">问题</label>
<textarea id="questionTitle" cols="35" rows="2"></textarea>
</div>
<input type="radio" name="role" value="stu">检查<br>
<input type="button" value="发布">
</div>
</div>
{% endblock %}
</body>
.box{
background-color: bisque;
}
.form-group{
background-color: aqua;
position: absolute;
top:200px;
right: 50px;
float: right;
height: 500px;
width: 500px;
}
.bt{
margin-top: 10%;
position: relative;
float: right;
width: 500px;
height: 500px;
}
.xq{
margin-top: 15%;
position: relative;
float: right;
width: 400px;
height: 40px;
}
.question{
border: 5px sandybrown;
width: 300px;
height: 100px;
}
admin(id,name,truename,phone,email,password,date,level)
user(id,name,password,truename,sex,phone,email,logo,qq,createdate,level,address)
book(id,title,abstracts,content,createdate,author_id,size,chilk,disc,classification)
classification(id,name,content)
commentaries(id,book_id,question_id,answer_id,date,content)
标签:文档 管理信息系统 数据存储 role name 环境 html 系统规划 lan
原文地址:http://www.cnblogs.com/BerylF/p/7817043.html