Reality123b commited on
Commit
74d00ea
·
verified ·
1 Parent(s): a6a950a

Update application/templates/index.html

Browse files
Files changed (1) hide show
  1. application/templates/index.html +9 -3
application/templates/index.html CHANGED
@@ -20,7 +20,7 @@
20
  <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
21
 
22
  <!-- Custom CSS -->
23
- <link rel="stylesheet" href="style.css">
24
  </head>
25
  <body>
26
  <!-- Navigation -->
@@ -39,7 +39,9 @@
39
 
40
  <div class="nav-center">
41
  <select name="models" id="models" class="models">
42
-
 
 
43
  </select>
44
  </div>
45
 
@@ -74,6 +76,10 @@
74
  </div>
75
 
76
  <div class="menu-footer">
 
 
 
 
77
  </div>
78
  </div>
79
 
@@ -171,6 +177,6 @@
171
 
172
  <!-- Scripts -->
173
  <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/highlight.min.js"></script>
174
- <script src="script.js" type="module"></script>
175
  </body>
176
  </html>
 
20
  <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
21
 
22
  <!-- Custom CSS -->
23
+ <link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
24
  </head>
25
  <body>
26
  <!-- Navigation -->
 
39
 
40
  <div class="nav-center">
41
  <select name="models" id="models" class="models">
42
+ <option value="gpt-4">GPT-4</option>
43
+ <option value="gpt-3.5">GPT-3.5</option>
44
+ <option value="claude">Claude</option>
45
  </select>
46
  </div>
47
 
 
76
  </div>
77
 
78
  <div class="menu-footer">
79
+ <button class="discord-btn">
80
+ <i class="fab fa-discord"></i>
81
+ <span>Join Discord</span>
82
+ </button>
83
  </div>
84
  </div>
85
 
 
177
 
178
  <!-- Scripts -->
179
  <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/highlight.min.js"></script>
180
+ <script src="{{ url_for('static', filename='js/script.js') }}" type="module"></script>
181
  </body>
182
  </html>