Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Contact y footer #1263

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions website/assets/css/style.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
body{
background: #BDBDBD;
}
.contacto {
background: white;

}

.formulario{
width: 800px;
background: #edebeb;

}
25 changes: 23 additions & 2 deletions website/templates/contact.html
Original file line number Diff line number Diff line change
@@ -1,2 +1,23 @@
<!-- your html code here -->
<p>Hello, I'm contact.html</p>

<div class="contacto container-flex col-10 mx-auto">
<h4>Contact</h4>
<p>Donec ullamcorper nulla non metus auctor fringilla. Vestibulum id ligula porta felis euismod semper. Praesent commodo cursus
magna, vel scelerisque nisel consectetur. Fusce dapibus, tellus ac cursus commodo.
</p>
</div>

<div class="formulario d-flex container-fluid col-10 mx-auto py-3">
<form class="form-container d-flex flex-column w-100">
<div class="mb-3 d-flex align-items-start">
<label for="Email1" class="form-label me-3" style="white-space: nowrap; font-size: 0.875rem;"><b>Your E-mail</b></label>
<input type="email" class="form-control ms-3" id="Email1" style="font-size: 0.875rem;" aria-describedby="emailHelp" placeholder="Your E-mail">
</div>
<div class="mb-3 d-flex align-items-start>
<label for="mensaje" class="form-label me-3" style="white-space: nowrap; font-size: 0.875rem;"><b>Your Message</b></label>
<textarea class="form-control ms-3" id="mensaje" style="font-size: 0.875rem;" placeholder="Please enter your message here..."></textarea>
</div>
<button type="submit" class="btn btn-primary align-self-end mt-3">Submit</button>
</form>
</div>

</body>
12 changes: 7 additions & 5 deletions website/templates/footer.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
<footer>
<div class="row">
<div class="col-lg-12">
<p>Copyright &copy; Your Website Name 2021</p>

<div class="container-fluid px-0 mt-5">
<div class="row">
<div class="col-10 mx-auto text-start" style="font-size: 0.875rem;">
<p>Copyright &copy; Your Website Name 2021</p>
</div>
</div>
</div>
</footer>