-
Notifications
You must be signed in to change notification settings - Fork 1
/
wish.html
30 lines (25 loc) · 986 Bytes
/
wish.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Send Wish</title>
<link rel="stylesheet" href="src/wish.css">
<link rel="stylesheet" href="src/style.css">
<script src="https://cdn.jsdelivr.net/npm/@emailjs/browser@3/dist/email.min.js"></script>
<script defer src="src/send-wish.js"></script>
</head>
<body>
<div class="wish-container">
<h1 class="title">Send Wish</h1>
<form id="wish-form">
<input type="hidden" name="contact_number">
<label for="sender-name">Name</label>
<input type="text" name="sender_name" id="sender-name" placeholder="Enter your name">
<label for="wish-message">Message</label>
<textarea name="wish_message" id="wish-message" cols="30" placeholder="Enter your wish" required></textarea>
<input type="submit" id="send-wish-btn" class="wish-me-btn" value="Send Wish">
</form>
</div>
</body>
</html>