-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustomize.html
43 lines (37 loc) · 1.02 KB
/
customize.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="assets/customize.css" />
</head>
<body>
<div class="container">
<h1 class="logo m0p0">automeet</h1>
</div>
<p class="helper-text">Schedule a meeting for later</p>
<div class="form-container">
<form">
<input
type="text"
name=""
id=""
placeholder="Meeting name"
class="full-w text-field"
/>
<input
type="url"
name=""
id=""
placeholder="Meeting link"
class="full-w text-field"
/>
<input type="time" name="" id="" class="full-w time-selector" />
<button type="submit" class="btn-submit">Schedule</button>
</form>
<a href="popup.html">back</a>
</div>
</body>
</html>