-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
105 lines (92 loc) · 4.43 KB
/
contact.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-96903651-2', 'auto');
ga('send', 'pageview');
</script>
<meta charset="UTF-8">
<meta name="description" content="To-do list application contact">
<meta name="keywords" content="todo,to-do,day,array,dayarray,list,editor,settings">
<meta name="author" content="Domenick DiBiase">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="images/favicon.ico" />
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script language="JavaScript" type="text/JavaScript" src="js/main.js"></script>
<title>Day Array</title>
</head>
<body>
<div style="min-height:calc(100% - 90px); margin-bottom:30px;">
<header class="header-theme container-fluid" style="box-shadow: 0 2px 5px #BBB">
<a href="index.html" rel="noopener">
<div class="arrow-back">
<svg width="36" height="36" class="arrow">
<polygon stroke-linejoin="round"
points="6,18 28,8 28,28"
stroke="#FFF" stroke-width="8"
fill="#FFF"/>
</svg>
</div>
<div class="logo-center">
<img src="images/favicon.ico" class="logo " />
</div>
</a>
</header>
<section>
<!-- Main section -->
<div class="container-fluid" style="padding-top:10px;" >
<div class="row justify-content-center">
<div class="col-md-10 item-col settings-hub" style="transition: 1.5s;">
<!-- Setting title -->
<div class="row justify-content-center" style="background-color:#E9ecef;border-radius:4px 4px 0 0; padding-top:10px; padding-bottom:10px;font-size:22px">
Contact Form
</div>
<form style="padding: 32px 10px 20px 10px" action="https://formspree.io/[email protected]" method="POST">
<input type="hidden" name="_next" value="http://dayarray.com" />
<div class="form-group">
<label for="user-name">Full Name</label>
<input type="text" class="form-control" name="Name" id="user-name" placeholder="First & Last Name">
</div>
<div class="form-group">
<label for="user-email">Email address</label>
<input type="email" class="form-control" name="_replyto" id="user-email" placeholder="Email">
</div>
<div class="form-group">
<label for="message-subject">Subject</label>
<input type="text" class="form-control" name="Subject" id="message-subject" placeholder="Subject">
</div>
<div class="form-group">
<label for="message-body">Message</label>
<textarea class="form-control" name="Message" id="message-body" rows="3" placeholder="Message"></textarea>
</div>
<div>
<button type="submit" class="btn header-theme btn-outline-dark" value="Send">Submit</button>
</div>
</form>
</div>
</div>
</div>
</section>
</div>
<footer style="text-align:center;" class="container-fluid">
<div class="row justify-content-center">
<div id="foot">
<span class="prompt" id="privacy">Privacy Policy</span>
<span style="color:#bbb">|</span>
<span class="prompt">© Copyright 2018</span>
</div>
<div id="links">
<a href="https://github.com/Domenick97" target="_blank" rel="noopener"><img src="images/github.png" alt="GitHub" class="icon-link" id="githubLink"/></a>
<a href="https://linkedin.com/in/domenickd" target="_blank" rel="noopener"><img src="images/linkedIn.png" alt="LinkedIn" class="icon-link" id="linkedInLink"/></a>
<a href="http://domenickdibiase.com" target="_blank" rel="noopener"><img src="images/DD.png" alt="Resume" class="icon-link" id="resumeLink"/></a>
</div>
</div>
</footer>
</body>
</html>