Andrewbluebird commited on
Commit
8d75ae6
·
verified ·
1 Parent(s): 11e9e6c

Create a empty html page named 'SignUp.html'

Browse files
Files changed (1) hide show
  1. SignUp.html +118 -0
SignUp.html ADDED
@@ -0,0 +1,118 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Sign Up | FurryChat.ai</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
10
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
12
+ <script src="https://unpkg.com/feather-icons"></script>
13
+ <link rel="stylesheet" href="style.css">
14
+ </head>
15
+ <body class="bg-gray-50">
16
+ <div class="relative z-10">
17
+ <!-- Navigation -->
18
+ <nav class="bg-white bg-opacity-90 backdrop-blur-sm shadow-sm py-4 px-6">
19
+ <div class="container mx-auto flex justify-between items-center">
20
+ <div class="flex items-center space-x-2">
21
+ <i data-feather="message-circle" class="text-blue-600"></i>
22
+ <span class="text-xl font-bold text-gray-800">FurryChat.ai</span>
23
+ </div>
24
+ <div class="hidden md:flex space-x-8">
25
+ <a href="/" class="text-gray-600 hover:text-blue-600 transition-colors">Home</a>
26
+ <a href="#" class="text-gray-600 hover:text-blue-600 transition-colors">Features</a>
27
+ <a href="#" class="text-gray-600 hover:text-blue-600 transition-colors">Pricing</a>
28
+ <a href="#" class="text-gray-600 hover:text-blue-600 transition-colors">About</a>
29
+ </div>
30
+ <a href="#" class="bg-blue-600 text-white px-4 py-2 rounded-lg hover:bg-blue-700 transition-colors">
31
+ Login
32
+ </a>
33
+ </div>
34
+ </nav>
35
+
36
+ <!-- Sign Up Form Section -->
37
+ <section class="py-16 px-4">
38
+ <div class="container mx-auto max-w-md">
39
+ <div class="bg-white rounded-xl shadow-md p-8">
40
+ <h2 class="text-2xl font-bold text-center mb-6 text-gray-800">Create Your Account</h2>
41
+ <form>
42
+ <div class="mb-4">
43
+ <label for="username" class="block text-gray-700 text-sm font-medium mb-2">Username</label>
44
+ <input type="text" id="username" class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
45
+ </div>
46
+ <div class="mb-4">
47
+ <label for="email" class="block text-gray-700 text-sm font-medium mb-2">Email</label>
48
+ <input type="email" id="email" class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
49
+ </div>
50
+ <div class="mb-4">
51
+ <label for="password" class="block text-gray-700 text-sm font-medium mb-2">Password</label>
52
+ <input type="password" id="password" class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
53
+ </div>
54
+ <div class="mb-6">
55
+ <label for="confirm-password" class="block text-gray-700 text-sm font-medium mb-2">Confirm Password</label>
56
+ <input type="password" id="confirm-password" class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
57
+ </div>
58
+ <button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white font-medium py-2 px-4 rounded-lg transition-colors">
59
+ Sign Up
60
+ </button>
61
+ <div class="mt-4 text-center">
62
+ <p class="text-gray-600">Already have an account? <a href="#" class="text-blue-600 hover:text-blue-700 font-medium">Log in</a></p>
63
+ </div>
64
+ </form>
65
+ </div>
66
+ </div>
67
+ </section>
68
+
69
+ <!-- Footer -->
70
+ <footer class="bg-gray-800 text-white mt-16 py-8">
71
+ <div class="container mx-auto px-4">
72
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
73
+ <div>
74
+ <div class="flex items-center space-x-2 mb-4">
75
+ <i data-feather="message-circle" class="text-blue-400"></i>
76
+ <span class="text-xl font-bold">FurryChat.ai</span>
77
+ </div>
78
+ <p class="text-gray-400">Perfect AI Furry roleplay haven powered by advanced artificial intelligence.</p>
79
+ </div>
80
+ <div>
81
+ <h4 class="font-semibold mb-4">Product</h4>
82
+ <ul class="space-y-2 text-gray-400">
83
+ <li><a href="#" class="hover:text-white transition-colors">Features</a></li>
84
+ <li><a href="#" class="hover:text-white transition-colors">Pricing</a></li>
85
+ <li><a href="#" class="hover:text-white transition-colors">API</a></li>
86
+ </ul>
87
+ </div>
88
+ <div>
89
+ <h4 class="font-semibold mb-4">Community</h4>
90
+ <ul class="space-y-2 text-gray-400">
91
+ <li><a href="#" class="hover:text-white transition-colors">Furry AI Gallery</a></li>
92
+ <li><a href="#" class="hover:text-white transition-colors">Furry AI Avatar Marketplace</a></li>
93
+ <li><a href="https://discord.gg/NKaAqn5q" class="hover:text-white transition-colors">Discord server</a></li>
94
+ </ul>
95
+ </div>
96
+ <div>
97
+ <h4 class="font-semibold mb-4">Company</h4>
98
+ <ul class="space-y-2 text-gray-400">
99
+ <li><a href="#" class="hover:text-white transition-colors">About</a></li>
100
+ <li><a href="#" class="hover:text-white transition-colors">Blog</a></li>
101
+ <li><a href="#" class="hover:text-white transition-colors">Careers</a></li>
102
+ </ul>
103
+ </div>
104
+ </div>
105
+ <div class="border-t border-gray-700 mt-8 pt-6 text-center text-gray-400">
106
+ <p>© 2025 MultiForce Entertainment Technologies LTD. All rights reserved.</p>
107
+ </div>
108
+ </div>
109
+ </footer>
110
+ </div>
111
+
112
+ <script>
113
+ feather.replace();
114
+ AOS.init();
115
+ </script>
116
+ <script src="script.js"></script>
117
+ </body>
118
+ </html>