You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
2.0 KiB
66 lines
2.0 KiB
<view class="body">
|
|
|
|
<view class="button-container" style="position: fixed; top: 20px; right: 20px;">
|
|
<button bindtap="goToPageA">Be a teacher</button>
|
|
</view>
|
|
|
|
<view class="image-container" >
|
|
<img src="/images/user.png" class="user-image" alt="User Image" style="width: 10px; height: 80px;" />
|
|
</view>
|
|
|
|
<view class="cover">
|
|
<image src="/images/user.png"class="user"/>
|
|
</view>
|
|
|
|
<form bindsubmit="submit">
|
|
|
|
<view class="section">
|
|
<view class="title">昵称:</view>
|
|
<input type="nickname" class="input"name="nickname"placeholder="昵称" />
|
|
</view>
|
|
|
|
<view class="section">
|
|
<view class="title">性别:</view>
|
|
<radio-group class="mg" name="gender">
|
|
<label >
|
|
<radio value="nan" />
|
|
男
|
|
</label>
|
|
<label >
|
|
<radio value="nv" />
|
|
女
|
|
</label>
|
|
</radio-group>
|
|
</view>
|
|
|
|
<view class="section">
|
|
<view class="title">年龄:</view>
|
|
<picker bindchange="dateChange" fields="year" value="{{date}}"mode="date"class="input"name="date">
|
|
<view class="picker">出生年:{{date}}</view>
|
|
</picker>
|
|
</view>
|
|
<view class="section">
|
|
<view class="title">地区:</view>
|
|
<picker bindchange="regionChange" value="{{region}}" value="{{region}}"mode="region"class="input"name="region">
|
|
<view class="picker">当前选择:{{region}}</view>
|
|
</picker>
|
|
</view>
|
|
|
|
<view class="section">
|
|
<view class="title">可以添加到你的联系方式:</view>
|
|
<input type="input" class="input"name="code"placeholder="昵称" />
|
|
</view>
|
|
|
|
<view class="section">
|
|
<view class="title">你的基本情况:</view>
|
|
<input type="input" class="input"name="code"placeholder="昵称" />
|
|
</view>
|
|
|
|
<view class="area">
|
|
<button style="margin:30rpx 0"type="primary"
|
|
form-type="submit">提交</button>
|
|
<button style="margin:30rpx 0"type="reset"
|
|
form-type="submit">重置</button>
|
|
</view>
|
|
</form>
|
|
</view> |