목록전체 글 (418)
Creative Code

11/21 추가 예정 사항 : 1. My profile 페이지 추가 2. 내 컴퓨터에서 이미지 파일 선택후 이미지 업로드 기능 추가 3. Home 화면 UI 수정 4.지도 기능 추가(?)

※login.py """Login page. Uses auth_layout to render UI shared with the sign up page.""" import reflex as rx from aurora.state.auth import AuthState def login(): return rx.container( rx.container(height='150px'), rx.vstack( rx.heading( rx.text( "Aurora", style={ "fontSize": "40px", "fontWeight": "bolder", "letterSpacing": "5px", "fontFamily": "Open Sans,Sans-serif", "background": "-webkit-linear-..

※접속 방법 1.aurora.zip 파일 다운로드 후 바탕화면에 압축 풀기 2.node.js 구글 검색후 다운로드 및 설치 3.cmd 실행창에서 pip install reflex 입력, 4.cmd 실행창에서 cd Desktop/aurora 입력 후 5.reflex db makemigrations 입력 6.reflex db migrate 입력 7.reflex run 입력 8.cmd 화면에 뜨는 http://localhost:3000 주소에 접속 6. 회원가입이 되어있지 않을시 sign up here 버튼을 클릭해 회원가입 진행 7. 회원가입 후 홈 화면 접속 ※수정 예정 목록 1. 로그인 화면 사진 미출력 현상 2. 회원가입, 홈화면 UI수정 3. 홈화면 기능 추가
https://martinii.fun/416 [pynecone] Dall-E 2 이미지 생성 앱 만들기③ #컴포넌트 지난 포스팅에서는 우리 튜토리얼 프로젝트인 Dall-E 웹앱에 들어가는 구성요소, 즉 우리 앱을 구성할 컴포넌트 목록에 대해 알아보았습니다. 2023.02.15 - [pynecone 튜토리얼] - [pynecone] Dall-E 2 이미지 martinii.fun https://reflex.dev/docs/gallery/ Reflex | Docs Gallery Browse our growing library of example apps. Use them as they are, right out of the box, or customize them to suit your needs. refle..

로그인 버튼을 클릭하면 서버로부터 데이터를 받아와 cmd창에 출력하는 코드 import pynecone as pc def get_input_field(icon: str, placeholder: str, _type: str): return pc.container( pc.hstack( pc.icon( tag=icon, color='black', fontSize='12px', ), pc.input( placeholder=placeholder, border='0px', focus_border_color='black', fontWeight='semibold', fontSize='13px', type=_type, ), ), borderBottom='0.2px solid black', width='300px', he..