diff options
author | Jonas Kohl | 2024-11-08 11:48:59 +0100 |
---|---|---|
committer | Jonas Kohl | 2024-11-08 11:48:59 +0100 |
commit | a4ea9c666f8f01b56077476e830dd358231bc53f (patch) | |
tree | ef4c7f021ef817022bd7e3567578ed70a311c3b8 /public/index.php | |
parent | 8ccf2f9bf55fdf9d707c76aa9074d60d3207fc13 (diff) |
Add emoji to toolbar
Diffstat (limited to 'public/index.php')
-rw-r--r-- | public/index.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/public/index.php b/public/index.php index ad32102..c6a5ad7 100644 --- a/public/index.php +++ b/public/index.php @@ -173,9 +173,9 @@ $csrf = csrf_token(); <input name="csrf" id="csrf-token" type="hidden" value="<?= htmlentities($csrf) ?>"> <textarea maxlength="<?= CODE_MAXLENGTH ?>" id="editor" name="code" rows="20"><?= htmlentities($code ?? $defaultCode) ?></textarea> <div id="toolbar"> - <button type="submit">▶ Compile & run</button> - <button type="button" id="dlCodeButton">Download code as file</button> - <button type="button" id="permalink">Permalink</button> + <button type="submit">▶️ Compile & run</button> + <button type="button" id="dlCodeButton">💾️ Download code as file</button> + <button type="button" id="permalink">🔗️ Permalink</button> </div> </form> <div id="output" style="display: none;"></div> |