email form draft
This commit is contained in:
parent
8f3fbcb115
commit
14929a79fa
1 changed files with 26 additions and 1 deletions
|
@ -1,6 +1,31 @@
|
|||
{{ template "head.html" .}}
|
||||
|
||||
<div style='height: 44px; width: 100%;'></div>
|
||||
<div style='height: 30vh; width: 100%;'></div>
|
||||
|
||||
<h1>dev</h1>
|
||||
|
||||
<!-- <div>{{ .Data.Dev.Email }}</div> -->
|
||||
|
||||
<div
|
||||
style="
|
||||
padding: 6px 12px;
|
||||
border-radius: 6px;
|
||||
background: var(--col-01);
|
||||
color: var(--col-10);
|
||||
"
|
||||
>
|
||||
<textarea rows="1" spellcheck="false">{{ .Data.Dev.Email }}</textarea>
|
||||
</div>
|
||||
|
||||
<div style="height: 32px;"></div>
|
||||
|
||||
<a href="javascript:post()" id="post_btn" class="btn">post</a>
|
||||
|
||||
<script>
|
||||
function post() {
|
||||
console.log("post")
|
||||
post_btn = elbyid("post_btn")
|
||||
post_btn.classList.add("bob")
|
||||
post_btn.classList.add("disabled")
|
||||
}
|
||||
</script>
|
||||
|
|
Loading…
Add table
Reference in a new issue