Commit 064af212 authored by jackfrued's avatar jackfrued

修改了add.html样式代码

parent 39f70bd3
...@@ -3,13 +3,19 @@ ...@@ -3,13 +3,19 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>添加</title> <title>添加</title>
<style>
.err {
color: red;
font-size: 14px;
}
</style>
</head> </head>
<body> <body>
<h2>添加违章记录</h2> <h2>添加违章记录</h2>
<hr> <hr>
<p> <p>
{% for err in errors %} {% for err in errors %}
<div style="color: red; font-size: 12px;">{{ err }}</div> <div class="err">{{ err }}</div>
{% endfor %} {% endfor %}
</p> </p>
<form action="/add" method="post"> <form action="/add" method="post">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment