Skip to content

Commit

Permalink
Updated Contact page
Browse files Browse the repository at this point in the history
Temporary solution in place unit we move to a Google Form
  • Loading branch information
mmeagher11 committed Feb 6, 2024
1 parent 41e696a commit 7b408fc
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 2 deletions.
65 changes: 65 additions & 0 deletions content/about/NewContactUS.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact CURIOSS</title>
<link rel="stylesheet" href="<link rel="stylesheet" type="text/css" href="scss/styles.scss">"> <!-- Link to your CSS file -->
<style>
/* Add some quick styles or link to your CSS */
.container {
max-width: 600px;
margin: auto;
padding: 20px;
}
.bg-white {
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
textarea, input[type="text"] {
width: 100%;
padding: 10px;
margin-bottom: 20px;
border: 1px solid #ccc;
border-radius: 5px;
}
input[type="submit"] {
background-color: #007bff;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #0056b3;
}
</style>
</head>
<body>

<section class="section" style="padding-top: 20px; padding-bottom: 20px;">
<div class="container">
<div class="col-md-6">
<div class="bg-white p-4">
<form action="MAILTO:[email protected]" method="post" enctype="text/plain">
<input type="text" id="name" name="name" class="form-control mb-4 px-0" placeholder="Name" required>
<input type="text" id="email" name="email" class="form-control mb-4 px-0" placeholder="Email address" required>
<input type="text" id="organization" name="organization" class="form-control mb-4 px-0" placeholder="Institution or Organization" required>
<label for="question">Please include your question here</label>
<textarea id="question" name="question" rows="4" cols="50" required>
</textarea>
<label for="ospo_info">If applicable, please tell us a little about your institution's OSPO</label>
<textarea id="ospo_info" name="ospo_info" rows="4" cols="50">
</textarea>
<input class="btn btn-primary" type="submit" value="Submit">
</form>
</div>
</div>
</div>
</section>

</body>
</html>
6 changes: 4 additions & 2 deletions content/about/contact.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ image: "/images/logo.png"
type: wide
---

CURIOSS is a Community for University and Research Institution OSPOs. If you want to find out more about the CURIOSS community, please fill in the form below. A member of the CURIOSS organizing team will be in contact.
CURIOSS is a Community for University and Research Institution OSPOs. If you want to find out more about the CURIOSS community, please drop us an email @ [email protected]. A member of the CURIOSS organizing team will be in contact.

/*
<section class="section" style="padding-top: 20px; padding-bottom: 20px;">
<div class="container">
<div class="col-md-6">
Expand All @@ -25,4 +26,5 @@ CURIOSS is a Community for University and Research Institution OSPOs. If you wan
</form>
</div>
</div>
</section>
</section>
*/

0 comments on commit 7b408fc

Please sign in to comment.