summary refs log tree commit diff stats
path: root/web/index.html
blob: 59b00133154834775f19c1c8621e1d71647e3641 (plain) (blame)
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
<!DOCTYPE html>
<html>
<head>
  <title>Wizard Card Generator - Four Island</title>
  <script type="text/javascript" src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
  <script type="text/javascript" src="wizard.js"></script>
  <link rel="stylesheet" href="wizard.css" />
</head>
<body>
  <div id="preamble">
    <h1>Wizard</h1>
    <p><strong>Wizard</strong> is a tool that allows you to create joke images with Magic: the Gathering cards. Given some input text, Wizard will find a string of MtG cards whose names span the input text, and glue them together, to comedic effect.</p>
    <p>Wizard was created by <a href="https://www.fourisland.com/">Hatkirby</a>, mostly in 2018, but was only connected to a webpage in 2024. It was inspired by a meme I saw in 2018, but I have no way of finding it because of the sands of time. The source code is available <a href="https://code.fourisland.com/wizard/">here</a>, which includes both a standalone generator, as well as the server that powers this webpage.</p>
  </div>
  <div id="form">
    <p>
      <label for="card_text">Text:</label>
      <input type="text" id="card_text"/>
    </p>
    <p>
      <button type="button" id="send_request">Submit</button>
    </p>
    <p id="status"></p>
  </div>
  <ul id="images"></div>
</body>
</html>