pinterest-site-verification=f733925c88b2d69d81e4298adc53ac40 import tkinter as tk from tkinter import messagebox import requests FORMSPREE_ENDPOINT = 'https://formspree.io/f/xlekqpdy' class App: def __init__(self): self.selected_options = {} self.window = tk.Tk() # Create the main window self.create_labels() # Create labels self.create_buttons() # Create buttons self.create_email_entry() # Create email entry field self.create_submit_button() # Create submit button def create_labels(self): labels = ["Dress Type", "Size", "Color", "Sleeve Type", "Fabric Type", "Lace", "Beading", "Train Length"] for label_text in labels: label = tk.Label(self.window, text=label_text + ":") label.pack() def create_buttons(self): button_data = [ { "name": "Dress Type", "options": ['Mermaid', 'Ball Gown', 'Sheath'], # Replace with actual wedding dress types }, { "name": "Size", "options": ['S', 'M', 'L'], # Replace with your own sizes }, { "name": "Color", "options": ['Red', 'Blue', 'Green'], # Replace with your own colors }, { "name": "Sleeve Type", "options": ['Short Sleeve', 'Long Sleeve', 'Sleeveless'], # Replace with actual sleeve types }, { "name": "Fabric Type", "options": ['Silk', 'Lace', 'Tulle'], # Replace with actual fabric types }, { "name": "Lace", "options": ['With Lace', 'Without Lace'], # Replace with actual lace options }, { "name": "Beading", "options": ['With Beading', 'Without Beading'], # Replace with actual beading options }, { "name": "Train Length", "options": ['Short', 'Medium', 'Long'], # Replace with actual train lengths } ] for button_info in button_data: frame = tk.Frame(self.window) frame.pack() label = tk.Label(frame, text=button_info["name"] + ":") label.pack(side=tk.LEFT) buttons = {} for option in button_info["options"]: button = tk.Button( frame, text=option, command=lambda opt=option, btns=buttons, cat=button_info["name"]: self.on_button_selected(cat, opt, btns) ) button.pack(side=tk.LEFT) buttons[option] = button self.selected_options[button_info["name"]] = None def create_email_entry(self): email_label = tk.Label(self.window, text="Email:") email_label.pack() self.email_entry = tk.Entry(self.window) self.email_entry.pack() def create_submit_button(self): submit_button = tk.Button(self.window, text="Submit", command=self.submit_form) submit_button.pack() def on_button_selected(self, category, option, buttons): self.selected_options[category] = option for btn in buttons.values(): btn.config(relief=tk.RAISED) buttons[option].config(relief=tk.SUNKEN) def submit_form(self): selected_options = list(self.selected_options.values()) email = self.email_entry.get() if None in selected_options or not email: messagebox.showerror("Error", "Please select all options and enter your email.") return self.send_email_to_formspree(selected_options, email) def send_email_to_formspree(self, user_choices, email): form_data = { 'email': email, 'choices': str(user_choices) # Convert the choices to a string } try: response = requests.post(FORMSPREE_ENDPOINT, data=form_data) response.raise_for_status() messagebox.showinfo("Success", "Form submitted successfully!") self.clear_selections() except requests.exceptions.RequestException as e: print("Error:", e) messagebox.showerror("Error", "Failed to submit form.") def clear_selections(self): self.selected_options = {} self.email_entry.delete(0, tk.END) self.window.destroy()
top of page

Unleash Your Inner Sparkle: Experience the Magic of a Custom Dress from Sparkle & Sass by Stacie


Discover the Ultimate Expression of Style and Individuality. Don't Settle for Ordinary.

When it comes to your special event, you deserve a dress that is as unique and extraordinary as you are. At Sparkle & Sass by Stacie, we believe in the power of personal expression through fashion. That's why we offer a truly one-of-a-kind experience, where you can embark on a journey to create your dream dress, tailored exclusively for you. It's time to unleash your inner sparkle and shine like never before.

Step into a World of Glamour and Expertise

Sparkle & Sass by Stacie is no ordinary fashion boutique. With a reputation for excellence in the industry, Stacie has dedicated her life to the art of fashion design and creating memorable experiences for her clients. From red carpets to elegant weddings, Stacie's designs have graced the most prestigious events. Now, it's your turn to bask in her expertise and immerse yourself in a world of glamour.




The Benefits of Owning a Custom Dress

When you choose a custom dress from Sparkle & Sass, you are opening the door to a world of possibilities. With the ability to handpick your fabrics from a stunning selection of luxurious options, you can create a dress that feels like a second skin. From sumptuous silks that caress your body to intricate lace that adds a touch of romance, the choice is yours.


But it doesn't stop there. At Sparkle & Sass, we believe in the power of personal connection. That's why you'll have the privilege of working one-on-one with Stacie and her seamstress team. Their expertise and attention to detail ensure that your dress not only fits you like a glove but also embodies your unique style and personality. From initial sketches to the final stitch, Stacie and her team are devoted to making your dream dress a reality.



Hear What Our Sparkling Clients Say

But don't just take our word for it. Here are a few testimonials from our cherished clients who experienced the magic of Sparkle & Sass by Stacie:

  • "I felt like a true princess in my custom dress from Sparkle & Sass. Stacie's attention to detail and ability to capture my vision was truly remarkable. Thank you for making me feel like the most beautiful bride!" - Emma C.

  • "Working with Stacie and her team was an absolute dream. They took the time to understand my style and guided me through the process with warmth and patience. The end result was a dress that was beyond my wildest dreams. I can't recommend Sparkle & Sass enough!" - Sarah R.

The Value of Investing in a Custom Dress

You may be wondering about the cost of a custom dress. Yes, it's true that our creations start at $3,000. But let's talk about value. When you invest in a dress from Sparkle & Sass, you're investing in so much more than just a piece of fabric. You're investing in a dress that is a true reflection of your individuality, crafted with meticulous care and expertise. You're investing in an experience that will leave you feeling like royalty every time you slip into your dress.

Unleash Your Inner Sparkle Today

The time has come to unleash your inner sparkle and shine like never before. Visit our website today to explore more about Sparkle & Sass by Stacie and schedule a consultation with our talented team. Together, let's embark on a journey to create a dress that captures your essence, radiates your beauty, and makes you feel like the true star that you are. Your dream dress awaits. Let us make it a reality.

 
 
 

Comments


bottom of page