forked from einaregilsson/Redirector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstorage_settings.html
124 lines (95 loc) · 3.9 KB
/
storage_settings.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
<!DOCTYPE html>
<html>
<head>
<title>NetJournal</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/redirector.css" />
<link rel="shortcut icon" href="images/icon-active-32.png">
<script src="js/angular.min.js"></script>
<script src="js/redirect.js"></script>
<script src="js/app.js"></script>
<script src="js/storage_settings.js"></script>
<meta charset="UTF-8">
<title id="title"></title>
<link rel="stylesheet" href="css/optionsstyle.css">
<script src="js/controllers/redirectorpage.js"></script>
</head>
<body style="background-image: url(images/yellolight.svg); background-size: cover;" ng-app="redirectorApp" ng-controller="StorageCtrl" class="private">
<script src="js/options_all.js"></script>
<div id="blur-wrapper" ng-class="{blur: showEditForm || showDeleteForm}">
<h1>NetJournal</h1>
<h5>Check in with yourself</h5>
<div class="menu">
<a class="btn blue large" href="about.html" target="_blank">About</a>
<a class="btn blue large" href="help.html" target="_blank">Help</a>
</div>
<div class="menu">
<a class="btn blue large" href="settings.html">What Sites am I Journaling?</a>
<a class="btn blue large" href="storage_settings.html" >Where is my Journal Saved?</a>
</div>
<div class="centered-body">
<h2>Google Docs</h2>
<label><input type="checkbox" ng-model="googleDocsOption" ng-click="toggleGoogleDocsOption()" />Save to Google Docs</label>
<div>
<button ng-click="toggleGoogleAuth()" class="btn green large" id="google-auth">{{signedIntoGoogle ? 'Sign Out of Google Account' : 'Sign Into Google Account'}}</button>
</div>
<div>
<button class="btn green large" id="google-auth post-to-drive">Post to Google</button>
</div>
<div>
<button id="change-folder" class="btn green large" id="google-auth">Change Directory</button>
</div>
</br>
</br>
<h2>Download to Computer</h2>
<label><input type="checkbox" ng-model="downloadOption" ng-click="toggleDownloadOption()" /> Download to downloads folder on computer</label>
</div>
<footer>
<small>NetJournal is a fork of <a target="_blank" href="http://einaregilsson.com">Einar Egilsson's</a> <a target="_blank" href="http://github.com/einaregilsson/Redirector">Redirector</a></small>
</footer>
<div id="content">
<div>
<div class="option-row">
<div id="account" class="option-group"></div>
<div class="option-values">
<div id="user-id" class="value"></div>
</div>
</div>
<div class="option-row">
<div id="save-folder-text" class="option-group"></div>
<div class="option-values">
<div id="save-folder" class="value"></div>
<button id="change-folder" class="option-values"></button>
</div>
</div>
<div class="option-row">
<div id="save-folder-text" class="option-group"></div>
<div class="option-values">
<div id="post-to-drive-container" class="value"></div>
<button id="post-to-drive" class="option-values">post to drive</button>
</div>
</div>
<div class="option-row">
<div id="misc-text" class="option-group"></div>
<div class="option-values">
<input id="convert" type="checkbox"><label for="convert" id="convert-to-docs" class="radio-text"></label>
<br>
<br>
<button id="send-feedback"></button>
<br>
<button id="help"></button>
</div>
</div>
<div id="internal" class="option-row gdocs-hidden">
<div id="debug-text" class="option-group"></div>
<div class="option-values">
<button id="feedback-internal"></button>
<br>
<button id="bug-internal"></button>
</div>
</div>
</div>
</div>
<script src="js/closuresetup.js"></script>
</body>
</html>