Form Addition

This commit is contained in:
Wesley Evans 2022-11-11 20:56:04 -08:00
parent b393088d09
commit 205b2c9c7f
2 changed files with 24 additions and 4 deletions

View File

@ -1,8 +1,17 @@
<footer class="{{ .Site.Params.background_color_class | default "bg-black" }} bottom-0 w-100 pa3" role="contentinfo">
<div class="flex justify-between">
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="{{ .Site.Home.Permalink }}" >
&copy; {{ with .Site.Copyright | default .Site.Title }} {{ . | safeHTML }} {{ now.Format "2006"}} {{ end }}
</a>
<div>{{ partial "social-follow.html" . }}</div>
<a style="text-align: center; width: 100%;" class="f6 fw6 no-underline white-70 dn dib-ns pv2 ph3" >
Made with Love ❤️ & Lemons 🍋
</a>
</div>
<a style="text-align: center; width: 100%;" class="f6 fw6 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="{{ .Site.Home.Permalink }}" > &copy;{{ with .Site.Copyright | default .Site.Title }} {{ . | safeHTML }} {{ now.Format "2006"}} {{ end }}
</a>
</footer>
<style>
</style>
<script>
</script>

View File

@ -0,0 +1,11 @@
{{ $.Scratch.Add "labelClasses" "f6 b db mb1 mt3 sans-serif mid-gray" }}
{{ $.Scratch.Add "inputClasses" "w-100 f5 pv3 ph3 bg-light-gray bn" }}
<form class="black-80 sans-serif" accept-charset="UTF-8" action="{{ .Get "action" }}" method="POST" role="form">
<label class="{{ $.Scratch.Get "labelClasses" }}" for="password">{{ i18n "Password" }}</label>
<input placeholder="••••••••" type="password" id="password" name="password" class="{{ $.Scratch.Get "inputClasses" }}" required aria-labelledby="password"/>
<input id="submit-btn" class="db w-100 mv2 white pa3 bn hover-shadow hover-bg-black bg-animate bg-black" type="button" value="SUBMIT" />
</form>