-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Tyler M. Neher <tyler@neherdata.com>
- Loading branch information
1 parent
22c9787
commit 824a7ae
Showing
6 changed files
with
214 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.DS_Store | ||
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
include: [".well-known"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<!DOCTYPE HTML> | ||
<html lang="en"> | ||
|
||
<head> | ||
|
||
<meta charset="UTF-8" /> | ||
|
||
<title>Neher Data Systems - Credit Forms</title> | ||
<meta name="description" content="Neher Data Systems - Credit forms for requesting freezes and reports by mail."> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
|
||
<link rel="stylesheet" type="text/css" href="styles-index-and-404.css"> | ||
|
||
<meta property="og:type" content="website" /> | ||
<meta name="og:description" content="Neher Data Systems - Credit forms for requesting freezes and reports by mail."> | ||
<meta property="og:title" content="Neher Data Systems - Credit Forms" /> | ||
<!-- <meta property="og:image" | ||
content="https://raw.githubusercontent.com/tylermneher/www.tylermneher.me/main/og-image.png" /> --> | ||
<meta property="og:image:type" content="image/png" /> | ||
<meta property="og:url" content="https://credit-forms.neherdata.com/" /> | ||
|
||
<!-- <link rel="icon" type="image/x-icon" href="static/favicon.ico" /> | ||
<link rel="apple-touch-icon" sizes="180x180" href="static/apple-touch-icon.png" /> | ||
<link rel="icon" type="image/png" sizes="32x32" href="static/favicon-32x32.png" /> | ||
<link rel="icon" type="image/png" sizes="16x16" href="static/favicon-16x16.png" /> --> | ||
|
||
|
||
<link rel="canonical" href="https://credit-forms.neherdata.com/" /> | ||
|
||
|
||
</head> | ||
|
||
<body> | ||
|
||
<div id="page-container"> | ||
<div id="content-wrap"> | ||
<div class="row"> | ||
<div class="column"> | ||
<p> | ||
<img src="neherdata.png" alt=" neherdata" /> | ||
</p> | ||
</div> | ||
<div class="column"> | ||
<h1>Neher Data Systems</h1> | ||
<h2>Credit Report and Freeze Request Forms</h2> | ||
<h3><a data-cy="index-body-report" href="report-forms.html">Report Requests</a> | <a | ||
data-cy="index-body-freeze" href="freeze-forms.html">Freeze Requests</a></h3> | ||
|
||
|
||
|
||
</div> | ||
</div> | ||
</div> | ||
<footer id="footer"> | ||
<p align="center">© 2024 <a data-cy="index-footer-neherdata" href="https://www.neherdata.com/">Neher Data | ||
Systems</a></p> | ||
</footer> | ||
</div> | ||
|
||
</body> | ||
|
||
|
||
|
||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
body { | ||
font-family: "Lucida Console", Courier, monospace; | ||
text-align: center; | ||
overflow: hidden; | ||
} | ||
|
||
h1 { | ||
font-family: "Lucida Console", Courier, monospace; | ||
font-style: oblique; | ||
text-align: center; | ||
} | ||
|
||
h2 { | ||
font-family: "Lucida Console", Courier, monospace; | ||
/* font-style: oblique; */ | ||
text-align: center; | ||
} | ||
|
||
h3 { | ||
font-family: "Lucida Console", Courier, monospace; | ||
font-style: oblique; | ||
text-align: center; | ||
} | ||
|
||
hr { | ||
margin-left: 50; | ||
width: 80vw; | ||
} | ||
|
||
#page-container { | ||
position: relative; | ||
min-height: 100vh; | ||
} | ||
|
||
#content-wrap { | ||
padding-bottom: 2.5rem; | ||
/* Footer height */ | ||
} | ||
|
||
|
||
#footer { | ||
font-family: "Lucida Console", Courier, monospace; | ||
width: 100%; | ||
position: absolute; | ||
height: 2.5rem; | ||
/* bottom: 0; */ | ||
left: 0; | ||
} | ||
|
||
|
||
|
||
.column { | ||
float: left; | ||
width: 50%; | ||
} | ||
|
||
/* Clear floats after the columns */ | ||
.row:after { | ||
content: ""; | ||
display: table; | ||
clear: both; | ||
} | ||
|
||
/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */ | ||
@media screen and (max-width: 1350px) { | ||
.column { | ||
width: 100%; | ||
} | ||
} | ||
|
||
img { | ||
max-width: 80vw; | ||
max-height: 80vh; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
body { | ||
font-family: "Lucida Console", Courier, monospace; | ||
text-align: center; | ||
} | ||
|
||
h1 { | ||
font-family: "Lucida Console", Courier, monospace; | ||
font-style: oblique; | ||
text-align: center; | ||
} | ||
|
||
h2 { | ||
font-family: "Lucida Console", Courier, monospace; | ||
/* font-style: oblique; */ | ||
text-align: center; | ||
} | ||
|
||
h3 { | ||
font-family: "Lucida Console", Courier, monospace; | ||
font-style: oblique; | ||
text-align: center; | ||
} | ||
|
||
hr { | ||
margin-left: 50; | ||
width: 80vw; | ||
} | ||
|
||
#page-container { | ||
position: relative; | ||
min-height: 100vh; | ||
} | ||
|
||
#content-wrap { | ||
padding-bottom: 2.5rem; | ||
/* Footer height */ | ||
} | ||
|
||
|
||
#footer { | ||
font-family: "Lucida Console", Courier, monospace; | ||
width: 100%; | ||
position: absolute; | ||
height: 2.5rem; | ||
/* bottom: 0; */ | ||
left: 0; | ||
} | ||
|
||
|
||
|
||
.column { | ||
float: left; | ||
width: 50%; | ||
} | ||
|
||
/* Clear floats after the columns */ | ||
.row:after { | ||
content: ""; | ||
display: table; | ||
clear: both; | ||
} | ||
|
||
/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */ | ||
@media screen and (max-width: 1350px) { | ||
.column { | ||
width: 100%; | ||
} | ||
} | ||
|
||
img { | ||
max-width: 80vw; | ||
max-height: 80vh; | ||
} |