Skip to content
This repository has been archived by the owner on Aug 26, 2024. It is now read-only.

Commit

Permalink
Blue icon,
Browse files Browse the repository at this point in the history
GUI tweaks
  • Loading branch information
dominikkadera committed Jan 29, 2019
1 parent d180303 commit 8bdcd20
Show file tree
Hide file tree
Showing 12 changed files with 5 additions and 12 deletions.
5 changes: 2 additions & 3 deletions html/loggedIn.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,18 +96,17 @@
</header>
<div class="center pb-30">
<h1 id="welcome">You are all set!</h1>
<p class="pb-30">Now you can start importing apps! Choose importing mode:</p>
<p class="pb-30">Now you can start importing apps! What format do you want to import?</p>
<form>
<select class="custom-select" id="modeselect" name="mode">
<option value="zapier">Zapier</option>
</select>
<button type="button" class="primary" id="letsgo">Set mode</button>
<button type="button" class="primary" id="letsgo">Choose</button>
</form>
</div>
<footer>
<span id="currentUser" class="o-6"></span>
<a class="logout" id="buttonLogout">(Logout)</a>
<span id="currentMode" class="o-6 f-right">Mode not set</span>
</footer>
<script type="module" src="./loggedIn.mjs"></script>
</body>
Expand Down
3 changes: 1 addition & 2 deletions html/zapierImport.html
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@

<body>
<header>
<a class="logout f-right" id="buttonChangeMode">&#852;</a>
<a href="https://www.integromat.com" target="_blank">
<img src="https://static.integromat.com/img/logo-dark.svg" height="30" width="30">
</a>
Expand All @@ -224,8 +225,6 @@ <h2 id="sr"></h2>
<footer>
<span id="currentUser" class="o-6"></span>
<a class="logout" id="buttonLogout">(Logout)</a>
<a class="logout f-right" id="buttonChangeMode">(Change)</a>
<span id="currentMode" class="o-6 f-right"></span>
</footer>

<script type="module" src="zapierImport.mjs"></script>
Expand Down
1 change: 0 additions & 1 deletion html/zapierImport.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import Common from '../bin/Common.mjs'
document.getElementById("buttonLogout").addEventListener("click", Common.logout);
document.getElementById("buttonChangeMode").addEventListener("click", Common.demode);
document.getElementById("currentUser").innerText = `Logged in as ${(await Common.getUserData(await Common.getStoredApiKey())).name}.`;
document.getElementById("currentMode").innerText = `Mode: ${await Common.getMode()}`
})();

/**
Expand Down
3 changes: 1 addition & 2 deletions html/zapierLogin.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@

<body>
<header>
<a class="logout f-right" id="buttonChangeMode">&#852;</a>
<a href="https://www.integromat.com" target="_blank">
<img src="https://static.integromat.com/img/logo-dark.svg" height="30" width="30">
</a>
Expand All @@ -73,8 +74,6 @@ <h1 id="welcome" class="h-icon">&#9919;</h1>
<footer>
<span id="currentUser" class="o-6"></span>
<a class="logout" id="buttonLogout">(Logout)</a>
<a class="logout f-right" id="buttonChangeMode">(Change)</a>
<span id="currentMode" class="o-6 f-right"></span>
</footer>

<script type="module" src="./zapierLogin.mjs"></script>
Expand Down
1 change: 0 additions & 1 deletion html/zapierLogin.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@ import Common from '../bin/Common.mjs'
document.getElementById("buttonLogout").addEventListener("click", Common.logout);
document.getElementById("buttonChangeMode").addEventListener("click", Common.demode);
document.getElementById("currentUser").innerText = `Logged in as ${(await Common.getUserData(await Common.getStoredApiKey())).name}.`;
document.getElementById("currentMode").innerText = `Mode: ${await Common.getMode()}`
})();
3 changes: 1 addition & 2 deletions html/zapierNotOn.html
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@

<body>
<header>
<a class="logout f-right" id="buttonChangeMode">&#852;</a>
<a href="https://www.integromat.com" target="_blank">
<img src="https://static.integromat.com/img/logo-dark.svg" height="30" width="30">
</a>
Expand All @@ -101,8 +102,6 @@ <h1>Almost there</h1>
<footer>
<span id="currentUser" class="o-6"></span>
<a class="logout" id="buttonLogout">(Logout)</a>
<a class="logout f-right" id="buttonChangeMode">(Change)</a>
<span id="currentMode" class="o-6 f-right"></span>
</footer>

<script type="module" src="./zapierNotOn.mjs"></script>
Expand Down
1 change: 0 additions & 1 deletion html/zapierNotOn.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import Common from '../bin/Common.mjs'
document.getElementById("buttonLogout").addEventListener("click", Common.logout);
document.getElementById("buttonChangeMode").addEventListener("click", Common.demode);
document.getElementById("currentUser").innerText = `Logged in as ${(await Common.getUserData(await Common.getStoredApiKey())).name}.`;
document.getElementById("currentMode").innerText = `Mode: ${await Common.getMode()}`
})();

document.getElementById("getStarted").addEventListener("click", callLanding);
Expand Down
Binary file modified icon/1024.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified icon/128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified icon/16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified icon/32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified icon/48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 8bdcd20

Please sign in to comment.