This repository was archived by the owner on Nov 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
109 lines (95 loc) · 3.84 KB
/
home.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
<!DOCTYPE html>
<html>
<head>
<title>Home | FewWords</title>
<link rel="icon" href="files/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="files/headbar.css">
<link rel="stylesheet" type="text/css" href="files/home.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Annie Use Your Telescope">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Trumbowyg/2.20.0/ui/trumbowyg.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Trumbowyg/2.20.0/trumbowyg.min.js"></script>
</head>
<body>
<div class="headfimage">
<div class="headftext">
<h1 class="fewords">FewWords</h1>
<hr>
<p class="toptext">A temporary place for storing textual Info</p>
<button onclick="document.location = 'home.html#editor'">Start</button>
</div>
</div>
<script src="files/headbar0.js"></script>
<div class="topnav" id="myTopnav">
<a class="active" href="home.html"><i class="fa fa-home"></i></a>
<a href="news.html">News</a>
<div class="dropdown">
<button class="dropbtn" onclick="dropdowning()">Profile</button>
<div id="dropdownid" class="dropdown-content">
<a href="#">Manage</a>
<a href="index.html">Log Out</a>
</div>
</div>
<a href="javascript:void(0);" style="font-size:15px;" class="icon" onclick="mobilebar()">☰</a>
</div>
<script src="files/hom.js"></script>
<div class="main-area">
<div class="switch-field">
<input class="switcher" type="radio" id="radio-one" name="switch-one" value="Simple" onclick="switchEDIT(event, 'sim-edit')" checked/>
<label for="radio-one">Simple</label>
<input class="switcher" type="radio" id="radio-two" name="switch-one" value="Trumbowyg" onclick="switchEDIT(event, 'trum-edit')" />
<label for="radio-two">Trumbowyg</label>
</div>
<form>
<div class="editor-area">
<div id="sim-edit" class="editors">
<textarea id="the-simple" name="simple-editor-area" placeholder="Start typing here...." required></textarea>
</div>
<div id="trum-edit" class="editors">
<div id="the-trumbowyg"></div>
</div>
</div>
<div class="editor-options">
<div class="the-options">
<label for="text-title">Text Name: </label>
<input type="text" name="text-title" placeholder="Text Title" required><br><br>
<label for="sharing">Sharing Options: </label>
<select id="sharing" name="sharing" title="Choose how you want to use your text" required>
<option value="share" title="You'll get a link and TextID to share it with others">Share</option>
<option value="personal">Personal</option>
</select><br>
<input type="submit" value="Save">
</div>
</div>
</form>
</div>
<div class="footer-row">
<div class="footer-column">
<div class="foot-left">
<ul>
<li><a href="home.html#editor">Start Writing</a></li>
<li><a href="versionlog.html#log">Webpage VersionLog</a></li>
<li><a href="index.html">Log Out</a></li>
</ul>
</div>
<div class="foot-left">
<ul>
<li><a href="https://github.com/The-UCS-Variable">UCS GitHub</a></li>
<li><a href="mailto:uchanakyasrinivas@gmail.com?subject=From%20FewWords&body=Hi%20UCS">Mail</a></li>
</ul>
</div>
</div>
<div class="footer-column">
<div class="foot-right">
<p>- <i>Powered by</i> -</p>
<a href="https://alex-d.github.io/Trumbowyg/" target="_blank">
<img src="files/trumbowyg.jpg" alt="Trumbowyg">
</a>
<p><small>An MIT-licensed open source project.</small></p>
</div>
</div>
</div>
</body>
</html>