-
Notifications
You must be signed in to change notification settings - Fork 0
/
guestbook.html
executable file
·133 lines (115 loc) · 4.53 KB
/
guestbook.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html>
<head>
<title>INTERTEXTrEVOLUTION</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/reset.css">
<link rel="stylesheet" href="/styles.css">
<link rel="stylesheet" href="/css/guestbook.css">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-9ralMzdK1QYsk4yBY680hmsb4/hJ98xK3w0TIaJ3ll4POWpWUYaA2bRjGGujGT8w" crossorigin="anonymous">
<script src="/script.js" defer></script>
<link rel="webmention" href="https://webmention.io/jgmac1106homepage.glitch.me/webmention" />
<link rel="pingback" href="https://webmention.io/jgmac1106homepage.glitch.me/xmlrpc" />
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
<link rel="token_endpoint" href="https://tokens.indieauth.com/token">
<link rel="webmention" href="https://webmention.io/jgregorymcverry.com/webmention" />
<link rel="pingback" href="https://webmention.io/jgregorymcverry.com/xmlrpc" />
</head>
<body>
<header>
<a href="index.html">
<div class="leading">
<h1 class="leading-bigtext">
INTERTEXTrEVOLUTION
</h1>
<h2 class="bigtext">
Make.Hack.Play.Learn
</h2>
</div>
</a>
<nav>
<div class="1">
<a href="aboutme.html" class="navLinks">About</a>
</div>
<div class="2">
<a href="https://quickthoughts.jgregorymcverry.com" class="navLinks">Blog</a>
</div>
<div class="3">
<a href="articles.html" rel="feed" class="navLinks">Articles</a>
</div>
<div class="4">
<a href="resume.html" class="navLinks">Vita</a>
</div>
<div class="5">
<a href="https://consulting.jgregorymcverry.com/" class="navLinks">Consulting</a>
</div>
<div class="6">
<a href="2toPonder.html" class="navLinks">Podcasts</a>
</div>
<div class="7">
<a href="following.html" class="navLinks">Following</a>
</div>
<div class="8">
<a href="annotations.html" class="navLinks">Annotations</a>
</div>
<div class="8">
<a href="imagecredits.html" class="navLinks">Img Credits</a>
</div>
</nav>
</header>
<main>
<details>
<summary>
Sign the Guestbook
</summary>
<div class="contain">
<div class="Contactwrapper">
<div class="form">
<h3>Send us a message</h3>
<form action="guestbook.php" method="post">
<p>
<label for="name">Your name</label>
<input type="text" id="name" name="user_name" />
</p>
<p>
<label for="website">My URL is...</label>
<input type="text" id="text" name="user_text" />
</p>
<p>
<label for="instagram">Instagram</label>
<input type="text" id="instagram" name="user_instagram" />
</p>
<p>
<label for="twitter">Twitter</label>
<input type="text" id="twitter" name="user_twitter" />
</p>
<p>
<label for="email">Email Address</label>
<input type="email" id="email" name="user_email">
</p>
<p class="full-width">
<label for="text">Write your message</label>
<textarea name="msg" id="user_msg" cols="30" rows="7"></textarea>
</p>
<p class="full-width">
<button type="submit" value="Submit">Send</button>
</p>
</form>
</div>
</div>
</div>
</details>
</main>
<footer>
<div class="flex-item">
<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<br>
<a href="https://microformats.org"><img class="https://indieweb.org/images/7/72/microformats-button.png"></a><br>
<a href="https://indieweb.org"><img src="https://indieweb.org/images/4/4a/indiewebcamp-button.png"></a>
<a href="https://indieweb.org/webmention"><img src="https://indieweb.org/images/0/03/webmention-button.png"></a>
<a href="https://microformats.org"><img src="https://indieweb.org/images/7/72/microformats-button.png"></a>
</div>
</footer>
</body>
</html>