没有 Bootstrap 的风格django表单

oyt4ldly  于 2022-12-14  发布在  Go
关注(0)|答案(1)|浏览(110)

我目前是新django。2我已经搜索了许多教程如何风格django形式不使用任何 Bootstrap 。3我可以风格django形式没有 Bootstrap 和使用纯100% css?4。5如果可以,请给出一些例子
我不想在django表单中使用 Bootstrap ,因为它限制了我的风格。所以我想知道没有 Bootstrap 的django表单风格的方法

6yt4nkrj

6yt4nkrj1#

你可以在index.html文件中编写普通的html css,并像平常一样使用它

<!DOCTYPE html>
<html>
<head>
<style> 
input {
  width: 100%;
}
</style>
</head>
<body>

<h2>A full-width input field</h2>

<form method="POST" action="/login">
  <label for="fname">First Name</label>
  <input type="text" id="fname" name="fname">
  <input type="submit" value="Submit">
</form>

</body>
</html>

然后在您的www.example.com中views.py导入所需内容并

def login(request):
    if request.method == 'POST':
        name=request.POST.get("fname")
        return HttpResponse("hey")
return HttpResponse("error")

相关问题