mirror of
https://github.com/theNewDynamic/gohugo-theme-ananke.git
synced 2025-06-08 17:22:46 +00:00
Form Addition
This commit is contained in:
parent
b393088d09
commit
205b2c9c7f
@ -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 }}" >
|
||||
© {{ 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 }}" > ©{{ with .Site.Copyright | default .Site.Title }} {{ . | safeHTML }} {{ now.Format "2006"}} {{ end }}
|
||||
</a>
|
||||
</footer>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
|
||||
<script>
|
||||
|
||||
</script>
|
11
layouts/shortcodes/form-pasword.html
Normal file
11
layouts/shortcodes/form-pasword.html
Normal 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>
|
Loading…
x
Reference in New Issue
Block a user