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

5 Bridal Secrets From A Wedding Dress Designer

Hey Yall Hey! I'm Stacie A., the Stacie A. Atelier collection and the proud owner of Sparkle & Sass by Stacie. I'm going to spill from bridal tea for yall and let you in on a few wedding dress shopping secrets,. So, grab a glass of bubbly and let's dive right into bridal and wedding dress secrets that will make you shine on your wedding day.

  1. Embrace Your Body: It's your time to shine, my dear. Embrace your beautiful curves and find a dress that celebrates your unique body shape. Whether you're petite, curvy, or statuesque, there's a wedding dress that will accentuate your best features. Remember, confidence is the key to radiance, and when you feel amazing in your gown, you'll exude a magical glow that will leave your guests breathless.

  2. Find Your Signature Style: Your wedding dress should be a reflection of your own personal style, love. Don't be swayed by passing trends or societal expectations. Instead, focus on finding a gown that speaks to your heart and makes you feel like the bride you've always envisioned. At Sparkle & Sass by Stacie, we offer a curated collection of designer dresses that range from traditional elegance to modern couture, ensuring there's a style that resonates with your unique taste.


3. Consider Customization: When you're ready to take it up a notch, my darling, consider the wonders of customization. A bespoke gown allows you to express your individuality and ensures that every detail is crafted to perfection. As the designer behind the Stacie A. Atelier collection, I take great pride in offering customization options that allow you to tailor your dress to your exact specifications. Together, we'll create a masterpiece that is uniquely yours.


4. Trust the Experts: Ya"ll now this is a big one: a Sparkle & Sass by Stacie bridal appointment is an experience like no other. When you step into Sparkle & Sass by Stacie, you'll be greeted by a team of knowledgeable stylists who are dedicated to making your wedding dress shopping journey unforgettable. Trust their expertise, allow them to guide you through the selection process, and be open to trying on wedding dresses you may not have initially considered. You may just find yourself falling in love with a dress you never knew existed.


5. Start Early and Enjoy the Journey: Ah, the joy of anticipation! Don't wait until the last minute, loves. Begin your dress shopping journey early, allowing yourself ample time to explore different styles, try on dresses, and make the right choice without feeling rushed. At Sparkle & Sass by Stacie, we recommend starting your bridal dress search at least six to nine months in advance, especially if you're considering customization options. Remember, my dear, this is a once-in-a-lifetime experience, so savor every moment.



Now, that you're armed with these insider secrets, you're ready to embark on the enchanting journey of finding your dream wedding dress. At Sparkle & Sass by Stacie, we're here to guide you, pamper you, and ensure that your dress shopping experience is nothing short of extraordinary. Step into our world of luxury, sophistication, and personalized service, and become part of the Sparkle & Sass family.

 
 
 

Comments


bottom of page