-
Notifications
You must be signed in to change notification settings - Fork 0
/
newmessage.html
84 lines (75 loc) · 3.74 KB
/
newmessage.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
<!DOCTYPE html>
<!--the HTML's language-->
<html lang="en">
<head>
<meta charset="utf-8">
<title> New Entry </title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="css/guestbook.css">
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Baloo+2&display=swap" rel="stylesheet">
</head>
<body>
<div class="topnav">
<a href="/" />Home</a>
<a href="/guestbook" />Guestbook</a>
<a class="active" href="/newmessage" />New Entry</a>
<a href="/ajaxmessage" />Ajax</a>
</div>
<div id="paddingstuff">
<h1 id="title" style="color:#416050;"> New Guestbook Entry </h1>
<hr>
<h2 style="color:#40413d; font-size: 20px;">Hi! Want to leave a message to our guestbook?</h2>
<p id="alt-text">Type your message down below, and hit send to see your message in
<a href="./guestbook" />the Guestbook
page</a>.</p>
<br />
<!-- THE GUESTBOOK ENTRY FORM -->
<div id="newentrycontainer">
<h3 style="font-size: 18px; color:#d6a95a; font-family: 'Franklin Gothic Medium';">New Guestbook Entry</h3>
<hr>
<br />
<form action="/newmessage" method="POST">
<div class="form-group">
<label for="name" id="label">Name</label>
<input type="text" class="form-control" id="username"
name="username" placeholder="What's your name?">
</div>
<div class="form-group">
<label for="country" id="label">Country</label>
<input type="text" class="form-control" id="country"
name="country" placeholder="Where are you from?">
</div>
<div class="form-group">
<label for="message" class="form-label" id="label">Message</label>
<textarea required name="message" class="form-control"
id="message"
rows="3"></textarea>
</div>
<button type="submit" class="btn btn-primary" id="submit">Submit</button>
</form>
<br />
</div>
</div>
<!-- for Bootstrap: -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script
src="https://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
</body>
</html>