23 lines
819 B
HTML
23 lines
819 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Bootstrap demo</title>
|
|
<link href="/static/css/bootstrap.min.css" rel="stylesheet">
|
|
<script src="/static/js/bootstrap.bundle.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Hello, world!</h1>
|
|
<div class="mb-3">
|
|
<label for="exampleFormControlInput1" class="form-label">Email address</label>
|
|
<input type="email" class="form-control" id="exampleFormControlInput1" placeholder="name@example.com">
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="exampleFormControlTextarea1" class="form-label">Example textarea</label>
|
|
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3"></textarea>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |