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

Stacie Sanders Martin: 5 Things You Need To Create a Highly Successful Career In Fashion

Updated: Apr 14, 2022

Aspart of our series about the 5 things you need to succeed in the fashion industry, I had the pleasure of interviewing Stacie A. Sanders Martin. Stacie A. Sanders Martin is the owner and principal designer of Sparkle & Sass by Stacie. Her eye for fashion and obsession with quality shows in each piece she creates. After styling friends and clients for over a decade, and being laid off from her corporate job at 36 weeks pregnant, Stacie took a leap of faith and opened Sparkle & Sass Bridal and Formal Wear out of her home in Sandy Springs, GA.



Thank you so much for joining us in this interview series! Can you tell us a story about what brought you to this specific career path?

In my late teens and early twenties, I was a pageant girl. In my college town, there was a pageant, prom and bridal store that I shopped at and fell in love with the idea of one day owning my own store. I started this journey about 5 years ago after I was laid off at 36 weeks pregnant with my son and decided that it was time to follow my dream. I started off with a partner renting evening gowns out of my basement. After the first year, I bought my partner out and began retailing bridal and evening gowns stil out of my home. I quickly noticed that almost every client both bridal and evening, wanted to customize or change something about their dress. They all wanted to put their own touch on the dress and have it truly represent themselves. During the pandemic, I taught myself how to sketch and began finding factories all over the world to manufacture my own collection and begin providing custom gowns to my clients. Last year my business grew so much that I was able to not only hire my first employees, but also move to our first commercial location and launched my collection Stacie A. Atelier!

Can you share the most interesting story that has happened to you since you started?

One of the moments that stands out to me is my first trip to market. I had never been before and didn’t know what to expect. Market is intense, exciting and can get very overwhelming. When I walked into the showrooms, and the reps started walking me through the lines, while wining and dining you, I really felt at home. I knew amidst all the chaos and pressure to buy, that I had finally found my calling and was right where I was meant to be. I picked up new lines, made friends and valuable connections in the industry and I was on my way to being a legit retailer in the industry. This past year, I went back to market and ran into some of the same people from before and it was a full circle moment. This time I wasn’t a rookie, I was an established business woman with a bigger budget, a brick and mortar business and a staff to assist me. I had also learned textile and fabrics, along with designing my own pieces. This knowledge was super beneficial when deciding which lines to buy. I felt like I had arrived!


Komentar


bottom of page