add form markup
This commit is contained in:
parent
c32ae39b31
commit
c607f0928c
1 changed files with 113 additions and 97 deletions
|
@ -9,21 +9,11 @@
|
|||
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
<h1 class="title">
|
||||
Hello World
|
||||
</h1>
|
||||
<p class="subtitle">
|
||||
My first website with <strong>Bulma</strong>!
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
<div id="navbar"></div>
|
||||
<div id="raw">
|
||||
<section class="section">
|
||||
<div id="view"></div>
|
||||
<div id="chart"></div>
|
||||
<div class="section">
|
||||
</section>
|
||||
<section class="section">
|
||||
<div class="columns">
|
||||
<div class="column">
|
||||
<h3 class="title is-3">Little humans</h3>
|
||||
|
@ -31,11 +21,24 @@
|
|||
<h3 class="subtitle is-3">Add human</h3>
|
||||
<form action="/users" method="post">
|
||||
{% csrf-field %}
|
||||
<label for="name">Name</label><br>
|
||||
<input type="text" name="name" id="name"><br>
|
||||
<label for="gender">Gender</label><br>
|
||||
<input type="text" name="gender" id="gender">
|
||||
<input class="button" type="submit" value="Submit">
|
||||
<div class="field">
|
||||
<label class="label" for="name">Name</label>
|
||||
<div class="control">
|
||||
<input class="input" type="text" name="name" id="name" placeholder="Foo bar">
|
||||
</div>
|
||||
</div>
|
||||
<div class="field">
|
||||
<label class="label" for="gender">Gender</label>
|
||||
<div class="control">
|
||||
<input class="input" type="text" name="gender" id="gender" placeholder="racetrack">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="field">
|
||||
<div class="control">
|
||||
<input class="button is-link" type="submit" value="Submit">
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<table class="table">
|
||||
|
@ -61,17 +64,22 @@
|
|||
<h3 class="subtitle is-3">Add relation</h3>
|
||||
<form action="/relations" method="post">
|
||||
{% csrf-field %}
|
||||
<div class="input-container">
|
||||
<div class="input-item">
|
||||
<label for="from">Person from</label><br>
|
||||
<div class="field">
|
||||
<label for="from">Person from</label>
|
||||
<div class="control">
|
||||
<div class="select">
|
||||
<select name="from_id" id="from">
|
||||
{% for user in users %}
|
||||
<option value="{{user.id}}">{{user.name}}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
</div>
|
||||
<div class="input-item">
|
||||
<label for="to">Person to</label><br>
|
||||
</div>
|
||||
</div>
|
||||
<div class="field">
|
||||
<label for="to">Person to</label>
|
||||
<div class="control">
|
||||
<div class="select">
|
||||
<select name="to_id" id="to">
|
||||
{% for user in users %}
|
||||
<option value="{{user.id}}">{{user.name}}</option>
|
||||
|
@ -79,7 +87,12 @@
|
|||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<input class="button" type="submit" value="Submit">
|
||||
</div>
|
||||
<div class="field">
|
||||
<div class="control">
|
||||
<input class="button is-link" type="submit" value="Submit">
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<table class="table">
|
||||
|
@ -100,19 +113,21 @@
|
|||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section">
|
||||
<div id="app">
|
||||
<div class="container-fluid">
|
||||
<div class="card-deck">
|
||||
<div class="card-block">
|
||||
<h4>Welcome to cat</h4>
|
||||
<p>If you're seeing this message, that means you haven't yet compiled your ClojureScript!</p>
|
||||
<p>Please run <code>lein figwheel</code> to start the ClojureScript compiler and reload the page.</p>
|
||||
<p>Please run <code>lein figwheel</code> to start the ClojureScript compiler and reload the page.
|
||||
</p>
|
||||
<h4>For better ClojureScript development experience in Chrome follow these steps:</h4>
|
||||
<ul>
|
||||
<li>Open DevTools
|
||||
<li>Go to Settings ("three dots" icon in the upper right corner of DevTools > Menu > Settings F1 >
|
||||
<li>Go to Settings ("three dots" icon in the upper right corner of DevTools > Menu > Settings F1
|
||||
>
|
||||
General > Console)
|
||||
<li>Check-in "Enable custom formatters"
|
||||
<li>Close DevTools
|
||||
|
@ -124,6 +139,7 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- scripts and styles -->
|
||||
{% style "/assets/bootstrap/css/bootstrap.min.css" %}
|
||||
|
@ -138,8 +154,8 @@
|
|||
<script type="text/javascript">
|
||||
var csrfToken = "{{csrf-token}}";
|
||||
</script>
|
||||
{% script "/js/app.js" %}
|
||||
<!--{% script "/js/app.js" %}-->
|
||||
|
||||
<!--{% script "/js/graphing.js" %}-->
|
||||
{% script "/js/graphing.js" %}
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in a new issue